You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					106 lines
				
				2.1 KiB
			
		
		
			
		
	
	
					106 lines
				
				2.1 KiB
			|   
											7 months ago
										 | <?php | ||
|  | /** | ||
|  |  * Class LiveChannelInfo | ||
|  |  * @package OSS\Model | ||
|  |  * | ||
|  |  */ | ||
|  | class LiveChannelInfo implements XmlConfig | ||
|  | { | ||
|  |     public function __construct($name = null, $description = null) | ||
|  |     { | ||
|  |         $this->name = $name; | ||
|  |         $this->description = $description; | ||
|  |         $this->publishUrls = array(); | ||
|  |         $this->playUrls = array(); | ||
|  |     } | ||
|  | 
 | ||
|  |     public function getName() | ||
|  |     { | ||
|  |         return $this->name; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function setName($name) | ||
|  |     { | ||
|  |         $this->name = $name; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function getPublishUrls() | ||
|  |     { | ||
|  |         return $this->publishUrls; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function getPlayUrls() | ||
|  |     { | ||
|  |         return $this->playUrls; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function getStatus() | ||
|  |     { | ||
|  |         return $this->status; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function getLastModified() | ||
|  |     { | ||
|  |         return $this->lastModified; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function getDescription() | ||
|  |     { | ||
|  |         return $this->description; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function setDescription($description) | ||
|  |     { | ||
|  |         $this->description = $description; | ||
|  |     } | ||
|  | 
 | ||
|  |     public function parseFromXmlNode($xml) | ||
|  |     { | ||
|  |         if (isset($xml->Name)) { | ||
|  |             $this->name = strval($xml->Name); | ||
|  |         } | ||
|  | 
 | ||
|  |         if (isset($xml->Description)) { | ||
|  |             $this->description = strval($xml->Description); | ||
|  |         } | ||
|  | 
 | ||
|  |         if (isset($xml->Status)) { | ||
|  |             $this->status = strval($xml->Status); | ||
|  |         } | ||
|  | 
 | ||
|  |         if (isset($xml->LastModified)) { | ||
|  |             $this->lastModified = strval($xml->LastModified); | ||
|  |         } | ||
|  | 
 | ||
|  |         if (isset($xml->PublishUrls)) { | ||
|  |             foreach ($xml->PublishUrls as $url) { | ||
|  |                 $this->publishUrls[] = strval($url->Url); | ||
|  |             } | ||
|  |         } | ||
|  | 
 | ||
|  |         if (isset($xml->PlayUrls)) { | ||
|  |             foreach ($xml->PlayUrls as $url) { | ||
|  |                 $this->playUrls[] = strval($url->Url); | ||
|  |             } | ||
|  |         } | ||
|  |     } | ||
|  | 
 | ||
|  |     public function parseFromXml($strXml) | ||
|  |     { | ||
|  |         $xml = simplexml_load_string($strXml); | ||
|  |         $this->parseFromXmlNode($xml); | ||
|  |     } | ||
|  | 
 | ||
|  |     public function serializeToXml() | ||
|  |     { | ||
|  |         throw new OssException("Not implemented."); | ||
|  |     } | ||
|  | 
 | ||
|  |     private $name; | ||
|  |     private $description; | ||
|  |     private $publishUrls; | ||
|  |     private $playUrls; | ||
|  |     private $status; | ||
|  |     private $lastModified; | ||
|  | } |