CloneSet723


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6230.983class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16776
libraries/joomla/form/form.php
26796
libraries/joomla/form/form.php
Clone Instance
1
Line Count
6
Source Line
776
Source File
libraries/joomla/form/form.php

        /**
         * Method to get the input control for a field.
         *
         * @access      public
         * @param       string          $name                   The field name.
         * @param       string          $group                  The group the field is in.
         * @param       mixed           $formControl    The optional form control. Set to false to disable.
         * @param       mixed           $groupControl   The optional group control. Set to false to disable.
         * @param       mixed           $value                  The optional value to render as the default for the field.
         * @return      string          The form field input control.
         * @since       1.6
         */
        public

               function getInput($name, $group=  '_default', $formControl=  '_default', $groupControl=  '_default', $value=  NULL) {

                // Render the field input.
                $field=  $this->getField($name, $group, $formControl, $groupControl, $value);
                $input=  $field->input;
                return $input;
              }


Clone Instance
2
Line Count
6
Source Line
796
Source File
libraries/joomla/form/form.php

        /**
         * Method to get the label for a field.
         *
         * @access      public
         * @param       string          $name                   The field name.
         * @param       string          $group                  The group the field is in.
         * @param       mixed           $formControl    The optional form control. Set to false to disable.
         * @param       mixed           $groupControl   The optional group control. Set to false to disable.
         * @param       mixed           $value                  The optional value to render as the default for the field.
         * @return      string          The form field label.
         * @since       1.6
         */
        public

               function getLabel($name, $group=  '_default', $formControl=  '_default', $groupControl=  '_default', $value=  NULL) {

                // Render the field label.
                $field=  $this->getField($name, $group, $formControl, $groupControl, $value);
                $label=  $field->label;
                return $label;
              }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Method to get the input control for a field.
         *
         * @access      public
         * @param       string          $name                   The field name.
         * @param       string          $group                  The group the field is in.
         * @param       mixed           $formControl    The optional form control. Set to false to disable.
         * @param       mixed           $groupControl   The optional group control. Set to false to disable.
         * @param       mixed           $value                  The optional value to render as the default for the field.
         * @return      string          The form field input control.
         * @since       1.6
         */
/**
         * Method to get the label for a field.
         *
         * @access      public
         * @param       string          $name                   The field name.
         * @param       string          $group                  The group the field is in.
         * @param       mixed           $formControl    The optional form control. Set to false to disable.
         * @param       mixed           $groupControl   The optional group control. Set to false to disable.
         * @param       mixed           $value                  The optional value to render as the default for the field.
         * @return      string          The form field label.
         * @since       1.6
         */
public

      function [[#variable50cd0d80]]($name,$group='_default',$formControl='_default',$groupControl='_default',$value=NULL) {
        // Render the field input.
        // Render the field label.
        $field=$this->getField($name,$group,$formControl,$groupControl,$value);
         [[#variable50cd0cc0]]=$field-> [[#variable50cd0ce0]];
        return [[#variable50cd0cc0]];
      }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#50cd0d80]]
getInput 
12[[#50cd0d80]]
getLabel 
21[[#50cd0cc0]]
$input 
22[[#50cd0cc0]]
$label 
31[[#50cd0ce0]]
input 
32[[#50cd0ce0]]
label