CloneSet1583


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.982class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16103
libraries/joomla/html/toolbar.php
26141
libraries/joomla/html/toolbar.php
Clone Instance
1
Line Count
6
Source Line
103
Source File
libraries/joomla/html/toolbar.php

        /**
         * Set a value
         *
         * @access      public
         * @param       string  The name of the param
         * @param       string  The value of the parameter
         * @return      string  The set value
         */
        public

               function appendButton() {

                // Push button onto the end of the toolbar array
                $btn=  func_get_args();
                array_push($this->_bar ,$btn);
                return TRUE;
              }


Clone Instance
2
Line Count
6
Source Line
141
Source File
libraries/joomla/html/toolbar.php

        /**
         * Get a value
         *
         * @access      public
         * @param       string  The name of the param
         * @param       mixed   The default value if not found
         * @return      string
         */
        public

               function prependButton() {

                // Insert button into the front of the toolbar array
                $btn=  func_get_args();
                array_unshift($this->_bar ,$btn);
                return TRUE;
              }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * Set a value
         *
         * @access      public
         * @param       string  The name of the param
         * @param       string  The value of the parameter
         * @return      string  The set value
         */
/**
         * Get a value
         *
         * @access      public
         * @param       string  The name of the param
         * @param       mixed   The default value if not found
         * @return      string
         */
public

      function [[#variable58922ee0]]() {
        // Push button onto the end of the toolbar array
        // Insert button into the front of the toolbar array
        $btn=func_get_args();
         [[#variable58922ec0]]($this->_bar ,$btn);
        return TRUE;
      }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#58922ee0]]
appendButton 
12[[#58922ee0]]
prependButton 
21[[#58922ec0]]
array_push 
22[[#58922ec0]]
array_unshift