| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 7 | 2 | 0 | 1.000 | toplevel_statement_sequence[3] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 6 | 28 | administrator/modules/mod_status/mod_status.php |
| 2 | 7 | 15 | administrator/modules/mod_unread/mod_unread.php |
| ||||
// Get the number of unread messages in your inbox
$query= 'SELECT COUNT(*)'
. ' FROM #__messages'
. ' WHERE state = 0'
. ' AND user_id_to = '
. (int) $user->get('id');
$db->setQuery($query);
$unread= $db->loadResult();
|
| ||||
$query= 'SELECT COUNT(*)'
. ' FROM #__messages'
. ' WHERE state = 0'
. ' AND user_id_to = '
. (int) $user->get('id');
$db->setQuery($query);
$unread= $db->loadResult();
|
| |||
// Get the number of unread messages in your inbox
$query='SELECT COUNT(*)'
. ' FROM #__messages'
. ' WHERE state = 0'
. ' AND user_id_to = '
. (int) $user->get('id');
$db->setQuery($query);
$unread=$db->loadResult();
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| None | |||