. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_GenericXsltSyndicationFeed extends Kaltura_Client_Type_GenericSyndicationFeed { public function getKalturaObjectType() { return 'KalturaGenericXsltSyndicationFeed'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->xslt = (string)$xml->xslt; if(empty($xml->itemXpathsToExtend)) $this->itemXpathsToExtend = array(); else $this->itemXpathsToExtend = Kaltura_Client_Client::unmarshalItem($xml->itemXpathsToExtend); } /** * * * @var string */ public $xslt = null; /** * This parameter determines which custom metadata fields of type related-entry should be * expanded to contain the kaltura MRSS feed of the related entry. Related-entry fields not * included in this list will contain only the related entry id. * This property contains a list xPaths in the Kaltura MRSS. * * * @var array of KalturaString */ public $itemXpathsToExtend; }