| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 8 | 13 | 3 | 0.971 | class_member |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 8 | 902 | libraries/simplepie/simplepie.php |
| 2 | 8 | 921 | libraries/simplepie/simplepie.php |
| 3 | 8 | 940 | libraries/simplepie/simplepie.php |
| 4 | 8 | 959 | libraries/simplepie/simplepie.php |
| 5 | 8 | 997 | libraries/simplepie/simplepie.php |
| 6 | 8 | 1016 | libraries/simplepie/simplepie.php |
| 7 | 8 | 1035 | libraries/simplepie/simplepie.php |
| 8 | 8 | 1054 | libraries/simplepie/simplepie.php |
| 9 | 8 | 1073 | libraries/simplepie/simplepie.php |
| 10 | 8 | 1092 | libraries/simplepie/simplepie.php |
| 11 | 8 | 1111 | libraries/simplepie/simplepie.php |
| 12 | 8 | 1130 | libraries/simplepie/simplepie.php |
| 13 | 8 | 1149 | 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| ||||
/**
* 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;
}
|
| |||
/**
* 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 Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#46d55ce0]] | set_restriction_class |
| 1 | 2 | [[#46d55ce0]] | set_rating_class |
| 1 | 3 | [[#46d55ce0]] | set_credit_class |
| 1 | 4 | [[#46d55ce0]] | set_copyright_class |
| 1 | 5 | [[#46d55ce0]] | set_caption_class |
| 1 | 6 | [[#46d55ce0]] | set_enclosure_class |
| 1 | 7 | [[#46d55ce0]] | set_category_class |
| 1 | 8 | [[#46d55ce0]] | set_author_class |
| 1 | 9 | [[#46d55ce0]] | set_item_class |
| 1 | 10 | [[#46d55ce0]] | set_file_class |
| 1 | 11 | [[#46d55ce0]] | set_parser_class |
| 1 | 12 | [[#46d55ce0]] | set_locator_class |
| 1 | 13 | [[#46d55ce0]] | set_cache_class |
| 2 | 1 | [[#46d55c80]] | 'SimplePie_Restriction' |
| 2 | 2 | [[#46d55c80]] | 'SimplePie_Rating' |
| 2 | 3 | [[#46d55c80]] | 'SimplePie_Credit' |
| 2 | 4 | [[#46d55c80]] | 'SimplePie_Copyright' |
| 2 | 5 | [[#46d55c80]] | 'SimplePie_Caption' |
| 2 | 6 | [[#46d55c80]] | 'SimplePie_Enclosure' |
| 2 | 7 | [[#46d55c80]] | 'SimplePie_Category' |
| 2 | 8 | [[#46d55c80]] | 'SimplePie_Author' |
| 2 | 9 | [[#46d55c80]] | 'SimplePie_Item' |
| 2 | 10 | [[#46d55c80]] | 'SimplePie_File' |
| 2 | 11 | [[#46d55c80]] | 'SimplePie_Parser' |
| 2 | 12 | [[#46d55c80]] | 'SimplePie_Locator' |
| 2 | 13 | [[#46d55c80]] | 'SimplePie_Cache' |
| 3 | 1 | [[#46d55c20]] | restriction_class |
| 3 | 2 | [[#46d55c20]] | rating_class |
| 3 | 3 | [[#46d55c20]] | credit_class |
| 3 | 4 | [[#46d55c20]] | copyright_class |
| 3 | 5 | [[#46d55c20]] | caption_class |
| 3 | 6 | [[#46d55c20]] | enclosure_class |
| 3 | 7 | [[#46d55c20]] | category_class |
| 3 | 8 | [[#46d55c20]] | author_class |
| 3 | 9 | [[#46d55c20]] | item_class |
| 3 | 10 | [[#46d55c20]] | file_class |
| 3 | 11 | [[#46d55c20]] | parser_class |
| 3 | 12 | [[#46d55c20]] | locator_class |
| 3 | 13 | [[#46d55c20]] | cache_class |