CloneSet878


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5430.950class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15595
libraries/joomla/application/component/controller.php
25462
libraries/joomla/application/component/view.php
34493
libraries/joomla/language/language.php
44528
libraries/joomla/language/language.php
Clone Instance
1
Line Count
5
Source Line
595
Source File
libraries/joomla/application/component/controller.php

        /**
         * Sets the internal message that is passed with a redirect
         *
         * @access      public
         * @param       string  The message
         * @return      string  Previous message
         * @since       1.5
         */
        function setMessage($text) {

                $previous=                $this->_message;
                $this->_message = $text;
                return $previous;
              }


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

        /**
        * Sets the layout name to use
        *
        * @access       public
        * @param        string $template The template name.
        * @return       string Previous value
        * @since        1.5
        */
        function setLayout($layout) {

                $previous=                $this->_layout;
                $this->_layout = $layout;
                return $previous;
              }


Clone Instance
3
Line Count
4
Source Line
493
Source File
libraries/joomla/language/language.php

        /**
         * Set the Debug property
         *
         * @access      public
         * @return      boolean Previous value
         * @since       1.5
         */
        function setDebug($debug) {
                $previous=        $this->_debug;
                $this->_debug = $debug;
                return $previous;
              }


Clone Instance
4
Line Count
4
Source Line
528
Source File
libraries/joomla/language/language.php

        /**
         * Set the default language code
         *
         * @access      public
         * @return      string Previous value
         * @since       1.5
         */
        function setDefault($lang) {
                $previous=        $this->_default;
                $this->_default = $lang;
                return $previous;
              }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Sets the internal message that is passed with a redirect
         *
         * @access      public
         * @param       string  The message
         * @return      string  Previous message
         * @since       1.5
         */
/**
        * Sets the layout name to use
        *
        * @access       public
        * @param        string $template The template name.
        * @return       string Previous value
        * @since        1.5
        */
/**
         * Set the default language code
         *
         * @access      public
         * @return      string Previous value
         * @since       1.5
         */
/**
         * Set the Debug property
         *
         * @access      public
         * @return      boolean Previous value
         * @since       1.5
         */
function [[#variable41d517a0]]( [[#variable41d51720]]) {
  $previous=$this-> [[#variable41d51740]];
  $this-> [[#variable41d51740]]= [[#variable41d51720]];
  return $previous;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#41d517a0]]
setMessage 
12[[#41d517a0]]
setLayout 
13[[#41d517a0]]
setDefault 
14[[#41d517a0]]
setDebug 
21[[#41d51720]]
$text 
22[[#41d51720]]
$layout 
23[[#41d51720]]
$lang 
24[[#41d51720]]
$debug 
31[[#41d51740]]
_message 
32[[#41d51740]]
_layout 
33[[#41d51740]]
_default 
34[[#41d51740]]
_debug