CloneSet984


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5230.972if_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15264
libraries/joomla/application/component/controller.php
25159
libraries/joomla/application/component/view.php
Clone Instance
1
Line Count
5
Source Line
264
Source File
libraries/joomla/application/component/controller.php

                // set the default view search path
                if (array_key_exists('view_path', $config)) {
                        // user-defined dirs
                        $this->_setPath('view', $config['view_path']);
                      }
                else   {
                        $this->_setPath('view', $this->_basePath
                                                .                DS
                                                .                   'views');
                      }


Clone Instance
2
Line Count
5
Source Line
159
Source File
libraries/joomla/application/component/view.php

                // set the default helper search path
                if (array_key_exists('helper_path', $config)) {
                        // user-defined dirs
                        $this->_setPath('helper', $config['helper_path']);
                      }
                else   {
                        $this->_setPath('helper', $this->_basePath
                                                  .                DS
                                                  .                   'helpers');
                      }


Clone AbstractionParameter Count: 3Parameter Bindings

// set the default view search path
// set the default helper search path
if (array_key_exists( [[#variable49086740]],$config)) {
  // user-defined dirs
  $this->_setPath( [[#variable490866e0]],$config[ [[#variable49086740]]]);
}
else {
  $this->_setPath( [[#variable490866e0]],$this->_basePath
                                         . DS
                                         .  [[#variable49086660]]);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#49086740]]
'view_path' 
12[[#49086740]]
'helper_path' 
21[[#490866e0]]
'view' 
22[[#490866e0]]
'helper' 
31[[#49086660]]
'views' 
32[[#49086660]]
'helpers'