Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
10 | 5 | 3 | 0.985 | class_member |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 150 | administrator/components/com_cache/models/cache.php |
2 | 10 | 136 | administrator/components/com_modules/models/modules.php |
3 | 10 | 97 | administrator/components/com_templates/models/templates.php |
4 | 10 | 129 | components/com_newsfeeds/models/category.php |
5 | 10 | 171 | components/com_search/models/search.php |
| ||||
/** * Method to get a pagination object for the cache * * @access public * @return integer */ public function getPagination() { if (empty($this->_pagination)) { jimport('joomla.html.pagination'); $this->_pagination = new JPagination($this->getTotal(), $this->getState('list.start'), $this->getState('list.limit')); } return $this->_pagination; } |
| ||||
/** * Method to get a pagination object for the Modules * * @access public * @return integer */ function getPagination() { // Lets load the content if it doesn't already exist if (empty($this->_pagination)) { jimport('joomla.html.pagination'); $this->_pagination = new JPagination($this->getTotal(), $this->getState('limitstart'), $this->getState('limit')); } return $this->_pagination; } |
| ||||
/** * Method to get a pagination object for the Templates * * @access public * @return integer */ function getPagination() { // Lets load the content if it doesn't already exist if (empty($this->_pagination)) { jimport('joomla.html.pagination'); $this->_pagination = new JPagination($this->getTotal(), $this->getState('limitstart'), $this->getState('limit')); } return $this->_pagination; } |
| ||||
/** * Method to get a pagination object of the newsfeeds items for the category * * @access public * @return integer */ function getPagination() { // Lets load the content if it doesn't already exist if (empty($this->_pagination)) { jimport('joomla.html.pagination'); $this->_pagination = new JPagination($this->getTotal(), $this->getState('limitstart'), $this->getState('limit')); } return $this->_pagination; } |
| ||||
/** * Method to get a pagination object of the weblink items for the category * * @access public * @return integer */ function getPagination() { // Lets load the content if it doesn't already exist if (empty($this->_pagination)) { jimport('joomla.html.pagination'); $this->_pagination = new JPagination($this->getTotal(), $this->getState('limitstart'), $this->getState('limit')); } return $this->_pagination; } |
| |||
[[#variable58542440]] /** * Method to get a pagination object of the weblink items for the category * * @access public * @return integer */ /** * Method to get a pagination object for the Templates * * @access public * @return integer */ /** * Method to get a pagination object for the Modules * * @access public * @return integer */ /** * Method to get a pagination object of the newsfeeds items for the category * * @access public * @return integer */ function getPagination() { // Lets load the content if it doesn't already exist if (empty($this->_pagination)) { jimport('joomla.html.pagination'); $this->_pagination =new JPagination($this->getTotal(),$this->getState( [[#variable58542340]]),$this->getState( [[#variable58542360]])); } return $this->_pagination; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#58542440]] | |
1 | 2 | [[#58542440]] | /** * Method to get a pagination object for the cache * * @access public * @return integer */ public |
1 | 3 | [[#58542440]] | |
1 | 4 | [[#58542440]] | |
1 | 5 | [[#58542440]] | |
2 | 1 | [[#58542340]] | 'limitstart' |
2 | 2 | [[#58542340]] | 'list.start' |
2 | 3 | [[#58542340]] | 'limitstart' |
2 | 4 | [[#58542340]] | 'limitstart' |
2 | 5 | [[#58542340]] | 'limitstart' |
3 | 1 | [[#58542360]] | 'limit' |
3 | 2 | [[#58542360]] | 'list.limit' |
3 | 3 | [[#58542360]] | 'limit' |
3 | 4 | [[#58542360]] | 'limit' |
3 | 5 | [[#58542360]] | 'limit' |