CloneSet128


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
81330.971class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18902
libraries/simplepie/simplepie.php
28921
libraries/simplepie/simplepie.php
38940
libraries/simplepie/simplepie.php
48959
libraries/simplepie/simplepie.php
58997
libraries/simplepie/simplepie.php
681016
libraries/simplepie/simplepie.php
781035
libraries/simplepie/simplepie.php
881054
libraries/simplepie/simplepie.php
981073
libraries/simplepie/simplepie.php
1081092
libraries/simplepie/simplepie.php
1181111
libraries/simplepie/simplepie.php
1281130
libraries/simplepie/simplepie.php
1381149
libraries/simplepie/simplepie.php
Clone Instance
1
Line Count
8
Source Line
902
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for caching.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_cache_class($class=  'SimplePie_Cache') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Cache'))
                {
                        $this->cache_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
2
Line Count
8
Source Line
921
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for auto-discovery.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_locator_class($class=  'SimplePie_Locator') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Locator'))
                {
                        $this->locator_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
3
Line Count
8
Source Line
940
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for XML parsing.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_parser_class($class=  'SimplePie_Parser') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Parser'))
                {
                        $this->parser_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
4
Line Count
8
Source Line
959
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for remote file fetching.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_file_class($class=  'SimplePie_File') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_File'))
                {
                        $this->file_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
5
Line Count
8
Source Line
997
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for handling feed items.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_item_class($class=  'SimplePie_Item') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Item'))
                {
                        $this->item_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
6
Line Count
8
Source Line
1016
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for handling author data.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_author_class($class=  'SimplePie_Author') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Author'))
                {
                        $this->author_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
7
Line Count
8
Source Line
1035
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for handling category data.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_category_class($class=  'SimplePie_Category') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Category'))
                {
                        $this->category_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
8
Line Count
8
Source Line
1054
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for feed enclosures.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_enclosure_class($class=  'SimplePie_Enclosure') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Enclosure'))
                {
                        $this->enclosure_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
9
Line Count
8
Source Line
1073
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for <media:text> captions
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_caption_class($class=  'SimplePie_Caption') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Caption'))
                {
                        $this->caption_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
10
Line Count
8
Source Line
1092
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for <media:copyright>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_copyright_class($class=  'SimplePie_Copyright') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Copyright'))
                {
                        $this->copyright_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
11
Line Count
8
Source Line
1111
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for <media:credit>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_credit_class($class=  'SimplePie_Credit') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Credit'))
                {
                        $this->credit_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
12
Line Count
8
Source Line
1130
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for <media:rating>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_rating_class($class=  'SimplePie_Rating') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Rating'))
                {
                        $this->rating_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone Instance
13
Line Count
8
Source Line
1149
Source File
libraries/simplepie/simplepie.php

        /**
         * Allows you to change which class SimplePie uses for <media:restriction>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
        function set_restriction_class($class=  'SimplePie_Restriction') {

                if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Restriction'))
                {
                        $this->restriction_class = $class;
                        return TRUE;
                      }
                return FALSE;
              }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Allows you to change which class SimplePie uses for <media:restriction>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for <media:rating>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for <media:credit>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for <media:copyright>
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for <media:text> captions
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for feed enclosures.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for handling category data.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for handling author data.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for handling feed items.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for remote file fetching.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for XML parsing.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for auto-discovery.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
/**
         * Allows you to change which class SimplePie uses for caching.
         * Useful when you are overloading or extending SimplePie's default classes.
         *
         * @access public
         * @param string $class Name of custom class.
         * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation
         * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
         */
function [[#variable46d55ce0]]($class= [[#variable46d55c80]]) {
  if (SimplePie_Misc::is_subclass_of($class, [[#variable46d55c80]])) {
    $this-> [[#variable46d55c20]]=$class;
    return TRUE;
  }
  return FALSE;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#46d55ce0]]
set_restriction_class 
12[[#46d55ce0]]
set_rating_class 
13[[#46d55ce0]]
set_credit_class 
14[[#46d55ce0]]
set_copyright_class 
15[[#46d55ce0]]
set_caption_class 
16[[#46d55ce0]]
set_enclosure_class 
17[[#46d55ce0]]
set_category_class 
18[[#46d55ce0]]
set_author_class 
19[[#46d55ce0]]
set_item_class 
110[[#46d55ce0]]
set_file_class 
111[[#46d55ce0]]
set_parser_class 
112[[#46d55ce0]]
set_locator_class 
113[[#46d55ce0]]
set_cache_class 
21[[#46d55c80]]
'SimplePie_Restriction' 
22[[#46d55c80]]
'SimplePie_Rating' 
23[[#46d55c80]]
'SimplePie_Credit' 
24[[#46d55c80]]
'SimplePie_Copyright' 
25[[#46d55c80]]
'SimplePie_Caption' 
26[[#46d55c80]]
'SimplePie_Enclosure' 
27[[#46d55c80]]
'SimplePie_Category' 
28[[#46d55c80]]
'SimplePie_Author' 
29[[#46d55c80]]
'SimplePie_Item' 
210[[#46d55c80]]
'SimplePie_File' 
211[[#46d55c80]]
'SimplePie_Parser' 
212[[#46d55c80]]
'SimplePie_Locator' 
213[[#46d55c80]]
'SimplePie_Cache' 
31[[#46d55c20]]
restriction_class 
32[[#46d55c20]]
rating_class 
33[[#46d55c20]]
credit_class 
34[[#46d55c20]]
copyright_class 
35[[#46d55c20]]
caption_class 
36[[#46d55c20]]
enclosure_class 
37[[#46d55c20]]
category_class 
38[[#46d55c20]]
author_class 
39[[#46d55c20]]
item_class 
310[[#46d55c20]]
file_class 
311[[#46d55c20]]
parser_class 
312[[#46d55c20]]
locator_class 
313[[#46d55c20]]
cache_class