CloneSet1193


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10201.000class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110118
administrator/components/com_modules/models/modules.php
21079
administrator/components/com_templates/models/templates.php
Clone Instance
1
Line Count
10
Source Line
118
Source File
administrator/components/com_modules/models/modules.php

        /**
         * Method to get the total number of Module items
         *
         * @access public
         * @return integer
         */
        function getTotal() {

                // Lets load the content if it doesn't already exist
                if (empty($this->_total))
                {
                        $query=  $this->_buildQuery();
                        $this->_total = $this->_getListCount($query);
                      }

                return $this->_total;
              }


Clone Instance
2
Line Count
10
Source Line
79
Source File
administrator/components/com_templates/models/templates.php

        /**
         * Method to get the total number of Module items
         *
         * @access public
         * @return integer
         */
        function getTotal() {

                // Lets load the content if it doesn't already exist
                if (empty($this->_total))
                {
                        $query=  $this->_buildQuery();
                        $this->_total = $this->_getListCount($query);
                      }

                return $this->_total;
              }


Clone AbstractionParameter Count: 0Parameter Bindings

/**
         * Method to get the total number of Module items
         *
         * @access public
         * @return integer
         */
function getTotal() {
  // Lets load the content if it doesn't already exist
  if (empty($this->_total)) {
    $query=$this->_buildQuery();
    $this->_total =$this->_getListCount($query);
  }
  return $this->_total;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None