/var/www/p4ela.net/www/wp-includes/SimplePie/src
NameSizeModeActions
Cache/-0777rm
Content/-0777rm
Decode/-0777rm
HTTP/-0777rm
Net/-0777rm
Parse/-0777rm
XML/-0777rm
Author.php38730666editdlrm
Cache.php48510666editdlrm
Caption.php49430666editdlrm
Category.php43660666editdlrm
Copyright.php36090666editdlrm
Core.php22350666editdlrm
Credit.php40220666editdlrm
Enclosure.php330240666editdlrm
Exception.php22670666editdlrm
File.php130430666editdlrm
Gzdecode.php102200666editdlrm
IRI.php356430666editdlrm
Item.php1314500666editdlrm
Locator.php156610666editdlrm
Misc.php686340666editdlrm
Parser.php346590666editdlrm
Rating.php36890666editdlrm
Registry.php86940666editdlrm
RegistryAware.php24110666editdlrm
Restriction.php41120666editdlrm
Sanitize.php251410666editdlrm
SimplePie.php1200110666editdlrm
Source.php242610666editdlrm
Edit: /var/www/p4ela.net/www/wp-includes/SimplePie/src/Rating.php (3689B)
` or `` tags as defined in Media RSS and iTunes RSS respectively * * Used by {@see \SimplePie\Enclosure::get_rating()} and {@see \SimplePie\Enclosure::get_ratings()} * * This class can be overloaded with {@see \SimplePie\SimplePie::set_rating_class()} * * @package SimplePie * @subpackage API */ class Rating { /** * Rating scheme * * @var string * @see get_scheme() */ public $scheme; /** * Rating value * * @var string * @see get_value() */ public $value; /** * Constructor, used to input the data * * For documentation on all the parameters, see the corresponding * properties and their accessors */ public function __construct($scheme = null, $value = null) { $this->scheme = $scheme; $this->value = $value; } /** * String-ified version * * @return string */ public function __toString() { // There is no $this->data here return md5(serialize($this)); } /** * Get the organizational scheme for the rating * * @return string|null */ public function get_scheme() { if ($this->scheme !== null) { return $this->scheme; } return null; } /** * Get the value of the rating * * @return string|null */ public function get_value() { if ($this->value !== null) { return $this->value; } return null; } } class_alias('SimplePie\Rating', 'SimplePie_Rating');