CloneSet508


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3530.970class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13172
libraries/joomla/environment/request.php
23191
libraries/joomla/environment/request.php
33210
libraries/joomla/environment/request.php
43229
libraries/joomla/environment/request.php
53248
libraries/joomla/environment/request.php
Clone Instance
1
Line Count
3
Source Line
172
Source File
libraries/joomla/environment/request.php

        /**
         * Fetches and returns a given filtered variable. The integer
         * filter will allow only digits to be returned. This is currently
         * only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      integer Requested variable
         * @since       1.5
         */
        static

               function getInt($name, $default=  0, $hash=  'default') {

                return JRequest::getVar($name, $default, $hash, 'int');
              }


Clone Instance
2
Line Count
3
Source Line
191
Source File
libraries/joomla/environment/request.php

        /**
         * Fetches and returns a given filtered variable.  The float
         * filter only allows digits and periods.  This is currently
         * only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      float   Requested variable
         * @since       1.5
         */
        static

               function getFloat($name, $default=  0.0, $hash=  'default') {

                return JRequest::getVar($name, $default, $hash, 'float');
              }


Clone Instance
3
Line Count
3
Source Line
210
Source File
libraries/joomla/environment/request.php

        /**
         * Fetches and returns a given filtered variable. The bool
         * filter will only return true/false bool values. This is
         * currently only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      bool            Requested variable
         * @since       1.5
         */
        static

               function getBool($name, $default=  FALSE, $hash=  'default') {

                return JRequest::getVar($name, $default, $hash, 'bool');
              }


Clone Instance
4
Line Count
3
Source Line
229
Source File
libraries/joomla/environment/request.php

        /**
         * Fetches and returns a given filtered variable. The word
         * filter only allows the characters [A-Za-z_]. This is currently
         * only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      string  Requested variable
         * @since       1.5
         */
        static

               function getWord($name, $default=  '', $hash=  'default') {

                return JRequest::getVar($name, $default, $hash, 'word');
              }


Clone Instance
5
Line Count
3
Source Line
248
Source File
libraries/joomla/environment/request.php

        /**
         * Fetches and returns a given filtered variable. The cmd
         * filter only allows the characters [A-Za-z0-9.-_]. This is
         * currently only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      string  Requested variable
         * @since       1.5
         */
        static

               function getCmd($name, $default=  '', $hash=  'default') {

                return JRequest::getVar($name, $default, $hash, 'cmd');
              }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Fetches and returns a given filtered variable. The integer
         * filter will allow only digits to be returned. This is currently
         * only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      integer Requested variable
         * @since       1.5
         */
/**
         * Fetches and returns a given filtered variable.  The float
         * filter only allows digits and periods.  This is currently
         * only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      float   Requested variable
         * @since       1.5
         */
/**
         * Fetches and returns a given filtered variable. The bool
         * filter will only return true/false bool values. This is
         * currently only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      bool            Requested variable
         * @since       1.5
         */
/**
         * Fetches and returns a given filtered variable. The word
         * filter only allows the characters [A-Za-z_]. This is currently
         * only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      string  Requested variable
         * @since       1.5
         */
/**
         * Fetches and returns a given filtered variable. The cmd
         * filter only allows the characters [A-Za-z0-9.-_]. This is
         * currently only a proxy function for getVar().
         *
         * See getVar() for more in-depth documentation on the parameters.
         *
         * @static
         * @param       string  $name           Variable name
         * @param       string  $default        Default value if the variable does not exist
         * @param       string  $hash           Where the var should come from (POST, GET, FILES, COOKIE, METHOD)
         * @return      string  Requested variable
         * @since       1.5
         */
static

      function [[#variable3c3dca00]]($name,$default= [[#variable3c3dc960]],$hash='default') {
        return JRequest::getVar($name,$default,$hash, [[#variable3c3dc900]]);
      }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#3c3dca00]]
getInt 
12[[#3c3dca00]]
getFloat 
13[[#3c3dca00]]
getBool 
14[[#3c3dca00]]
getWord 
15[[#3c3dca00]]
getCmd 
21[[#3c3dc960]]
0 
22[[#3c3dc960]]
0.0 
23[[#3c3dc960]]
FALSE 
24[[#3c3dc960]]
'' 
25[[#3c3dc960]]
'' 
31[[#3c3dc900]]
'int' 
32[[#3c3dc900]]
'float' 
33[[#3c3dc900]]
'bool' 
34[[#3c3dc900]]
'word' 
35[[#3c3dc900]]
'cmd'