本文整理汇总了PHP中Playlist::getDescription方法的典型用法代码示例。如果您正苦于以下问题:PHP Playlist::getDescription方法的具体用法?PHP Playlist::getDescription怎么用?PHP Playlist::getDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Playlist
的用法示例。
在下文中一共展示了Playlist::getDescription方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPlaylistItem
/**
* Get bookmark rss link.
*/
private function getPlaylistItem(Playlist $link, $itemid)
{
$itemLink = SERVER_HOST_AND_PATH . 'php/index.php?action=' . ViewPlaylistPageAction::getActionName() . URL_AMP . 'subaction=' . ViewPlaylistPageAction::SUBACTION_PLAYLIST_OPEN . URL_AMP . 'playlist=' . base64_encode($link->getFilename()) . URL_AMP . 'PHPSESID=' . session_id();
$itemName = $link->getName() != null ? $link->getName() . " (" . $link->getFilename() . ")" : $link->getFilename();
return '<item>' . "\n" . ' <title><![CDATA[' . $itemName . ']]></title>' . "\n" . ' <description><![CDATA[' . $link->getDescription() . ']]></description>' . "\n" . ' <link>' . $itemLink . '</link>' . "\n" . ' <image>' . XTREAMER_IMAGE_PATH . 'playlist/video.png</image>' . "\n" . ' <itemid>' . $itemid . '</itemid>' . "\n" . '</item>' . "\n";
}
示例2: setPlaylist
public function setPlaylist(Playlist $playlist)
{
$this->playlist = $playlist;
$this->title = $playlist->getName();
$this->description = $playlist->getDescription();
}
示例3: savePlaylist
/**
* Create playlist xml document and save to file.
* @param $file Ruta al archivo
* @param $playlist Playlist.
*/
private function savePlaylist($file, Playlist $playlist)
{
//Save to xml
$simpleXml = new SimpleXmlElement('<?xml version="1.0" encoding="UTF-8"?><playlist name="' . utf8_encode($playlist->getName()) . '" description="' . utf8_encode($playlist->getDescription()) . '"></playlist>');
$count = 1;
foreach ($playlist->getPlaylistLinks() as $key => $playlistLink) {
$element = $simpleXml->addChild("xfile");
$element->addAttribute("key", $playlistLink->getKey());
if ($playlistLink->getType() != null) {
$element->addAttribute("type", $playlistLink->getType());
} else {
$element->addAttribute("type", $count);
++$count;
}
if ($playlistLink->getThumbnail() != null) {
$element->addAttribute("thumbnail", $playlistLink->getThumbnail());
}
if ($playlistLink->getTitle() != null) {
$element->addChild("title", "<![CDATA[" . $playlistLink->getTitle() . "]]>");
}
if ($playlistLink->getDescription() != null) {
$element->addChild("description", "<![CDATA[" . $playlistLink->getDescription() . "]]>");
}
if ($playlistLink->getLink() != null) {
$element->addChild("link", "<![CDATA[" . $playlistLink->getLink() . "]]>");
}
if ($playlistLink->getFormat() != null) {
$element->addChild("format", "<![CDATA[" . $playlistLink->getFormat() . "]]>");
}
if ($playlistLink->getLanguage() != null) {
$element->addChild("language", "<![CDATA[" . $playlistLink->getLanguage() . "]]>");
}
if (count($playlistLink->getIds()) > 0) {
$elementId = $element->addChild("part");
foreach ($playlistLink->getIds() as $order => $idValue) {
$temp = $elementId->addChild("id", $idValue);
$temp->addAttribute("order", $order);
}
}
}
$fp = fopen($file, 'w');
fwrite($fp, html_entity_decode($this->xmlpp($simpleXml->asXML(), false)));
fclose($fp);
}