CloneSet740


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
28230.987class_member_list[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
128104
libraries/joomla/html/pane.php
228201
libraries/joomla/html/pane.php
Clone Instance
1
Line Count
28
Source Line
104
Source File
libraries/joomla/html/pane.php

        /**
         * Constructor
         *
         * @param       array   $params         Associative array of values
         */
        function __construct($params=  array()) {

                static $loaded
                       =         FALSE;
                parent:: __construct($params);

                if (!$loaded) {
                        $this->_loadBehavior($params);
                        $loaded=  TRUE;
                      }
              }

        /**
         * Creates a pane and creates the javascript object for it
         *
         * @param string The pane identifier
         */
        public

               function startPane($id) {

                return '<dl class="tabs" id="'
                       .                       $id
                       .                           '">';
              }
        /**
         * Ends the pane
         */
        public

               function endPane() {

                return "</dl>";
              }


Clone Instance
2
Line Count
28
Source Line
201
Source File
libraries/joomla/html/pane.php

        /**
         * Constructor
         *
         * @param int useCookies, if set to 1 cookie will hold last used tab between page refreshes
         */
        function __construct($params=  array()) {

                static $loaded
                       =         FALSE;
                parent:: __construct($params);

                if (!$loaded) {
                        $this->_loadBehavior($params);
                        $loaded=  TRUE;
                      }
              }

        /**
         * Creates a pane and creates the javascript object for it
         *
         * @param string The pane identifier
         */
        public

               function startPane($id) {

                return '<div id="'
                       .           $id
                       .               '" class="pane-sliders">';
              }
        /**
         * Ends the pane
         */
        public

               function endPane() {

                return '</div>';
              }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Constructor
         *
         * @param       array   $params         Associative array of values
         */
/**
         * Constructor
         *
         * @param int useCookies, if set to 1 cookie will hold last used tab between page refreshes
         */
function __construct($params=array()) {
  static $loaded
         =
         FALSE;
  parent:: __construct($params);
  if (!$loaded) {
    $this->_loadBehavior($params);
    $loaded=TRUE;
  }
}
/**
         * Creates a pane and creates the javascript object for it
         *
         * @param string The pane identifier
         */
public

      function startPane($id) {
        return [[#variable46d07b80]]
              . $id
              .  [[#variable3eb31180]];
      }
/**
         * Ends the pane
         */
public

      function endPane() {
        return [[#variable3eb31120]];
      }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#46d07b80]]
'<dl class="tabs" id="' 
12[[#46d07b80]]
'<div id="' 
21[[#3eb31180]]
'">' 
22[[#3eb31180]]
'" class="pane-sliders">' 
31[[#3eb31120]]
"</dl>" 
32[[#3eb31120]]
'</div>'