Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 4 | 1 | 0.991 | class_member |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 37 | administrator/components/com_categories/models/category.php |
2 | 3 | 38 | administrator/components/com_content/models/article.php |
3 | 3 | 38 | administrator/components/com_menus/models/item.php |
4 | 3 | 37 | administrator/components/com_menus/models/menu.php |
| ||||
/** * Returns a reference to the a Table object, always creating it * * @param type $type The table type to instantiate * @param string $prefix A prefix for the table class name. Optional. * @param array $options Configuration array for model. Optional. * @return JTable A database object */ public function &getTable($type= 'Category', $prefix= 'JTable', $config= array()) { return JTable::getInstance($type, $prefix, $config); } |
| ||||
/** * Returns a reference to the a Table object, always creating it * * @param type $type The table type to instantiate * @param string $prefix A prefix for the table class name. Optional. * @param array $options Configuration array for model. Optional. * @return JTable A database object */ public function &getTable($type= 'Content', $prefix= 'JTable', $config= array()) { return JTable::getInstance($type, $prefix, $config); } |
| ||||
/** * Returns a reference to the a Table object, always creating it * * @param type $type The table type to instantiate * @param string $prefix A prefix for the table class name. Optional. * @param array $options Configuration array for model. Optional. * @return JTable A database object */ public function &getTable($type= 'Menu', $prefix= 'JTable', $config= array()) { return JTable::getInstance($type, $prefix, $config); } |
| ||||
/** * Returns a reference to the a Table object, always creating it * * @param type $type The table type to instantiate * @param string $prefix A prefix for the table class name. Optional. * @param array $options Configuration array for model. Optional. * @return JTable A database object */ public function &getTable($type= 'MenuType', $prefix= 'JTable', $config= array()) { return JTable::getInstance($type, $prefix, $config); } |
| |||
/** * Returns a reference to the a Table object, always creating it * * @param type $type The table type to instantiate * @param string $prefix A prefix for the table class name. Optional. * @param array $options Configuration array for model. Optional. * @return JTable A database object */ public function &getTable($type= [[#variable4c805da0]],$prefix='JTable',$config=array()) { return JTable::getInstance($type,$prefix,$config); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#4c805da0]] | 'MenuType' |
1 | 2 | [[#4c805da0]] | 'Menu' |
1 | 3 | [[#4c805da0]] | 'Content' |
1 | 4 | [[#4c805da0]] | 'Category' |