本文整理汇总了PHP中feed::sidebarDescription方法的典型用法代码示例。如果您正苦于以下问题:PHP feed::sidebarDescription方法的具体用法?PHP feed::sidebarDescription怎么用?PHP feed::sidebarDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类feed
的用法示例。
在下文中一共展示了feed::sidebarDescription方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: PageMain
//.........这里部分代码省略.........
$TMPL['likes'] = $stats['likes'];
$TMPL['comments'] = $stats['comments'];
$TMPL['downloads'] = $stats['downloads'];
$TMPL['played_most'] = $most['played'];
$TMPL['downloaded_most'] = $most['downloaded'];
$TMPL['top_countries'] = $most['countries'];
$TMPL['top_cities'] = $most['cities'];
$TMPL['go_pro'] = $most['gopro'];
} elseif (!$track[1] && $_GET['type'] == 'likes') {
$skin = new skin('track/likes');
$rows = '';
$feed->per_page = $settings['qperpage'];
$TMPL['likes'] = $feed->getLikes(0, 2, $_GET['id']);
} elseif (!$track[1] && $_GET['type'] == 'edit') {
$skin = new skin('track/edit');
$rows = '';
$TMPL['page_title'] = $LNG['edit'] . ' -';
$TMPL['form_url'] = $CONF['url'] . '/index.php?a=track&id=' . $_GET['id'] . '&type=edit';
$feed->art_size = $settings['artsize'];
$feed->art_format = $settings['artformat'];
if (!empty($_POST['save'])) {
$update = $feed->updateTrack($_POST, 0);
$TMPL['message'] = $update;
}
$currentTrack = $feed->getTrackInfo($_GET['id'], 1);
foreach ($currentTrack as $key => $info) {
$TMPL[$key] = $info;
}
$date = explode('-', $TMPL['release']);
$TMPL['years'] = generateDateForm(0, $date[0]);
$TMPL['months'] = generateDateForm(1, $date[1]);
$TMPL['days'] = generateDateForm(2, $date[2]);
if ($TMPL['download'] == 0) {
$TMPL['doff'] = ' selected="selected"';
} else {
$TMPL['don'] = ' selected="selected"';
}
if ($TMPL['public'] == 0) {
$TMPL['poff'] = ' selected="selected"';
} else {
$TMPL['pon'] = ' selected="selected"';
}
if ($TMPL['license'] == 0) {
$TMPL['ar'] = 'checked';
} else {
$TMPL['cc'] = 'checked';
$license = str_split($TMPL['license']);
$TMPL['nc'] = $license[1];
$TMPL['nd_sa'] = $license[2];
}
$TMPL['display'] = 'none';
$TMPL['btntext'] = $LNG['save'];
} else {
$skin = new skin('track/rows');
$rows = '';
// If the track id is not set, or it doesn't consist from digits
if (!isset($_GET['id']) || !ctype_digit($_GET['id'])) {
header("Location: " . $CONF['url']);
}
$TMPL['messages'] = $track[0];
// If the output is empty redirect to home-page
if (empty($TMPL['messages'])) {
header("Location: " . $CONF['url']);
}
}
$rows = $skin->make();
$skin = new skin('track/sidebar');
$sidebar = '';
$TMPL['ad'] = generateAd($settings['ad5']);
// If the track can be viewed
if (!$track[1]) {
$TMPL['edit'] = $feed->sidebarButton($_GET['id'], 1);
if (isset($_GET['type']) && $_GET['type'] !== 'edit') {
unset($TMPL['edit']);
}
if ($_GET['type'] == 'stats') {
$TMPL['statistics'] = $feed->sidebarStatsFilters($_GET['filter']);
} else {
$TMPL['statistics'] = $feed->sidebarStatistics($_GET['id'], 1, $trackInfo[1]);
}
$TMPL['description'] = $feed->sidebarDescription($_GET['id'], 0);
$TMPL['tags'] = $feed->sidebarKeywords($_GET['id'], 0);
$TMPL['report'] = $feed->sidebarReport($_GET['id']);
}
$sidebar = $skin->make();
$TMPL = $TMPL_old;
unset($TMPL_old);
$TMPL['rows'] = $rows;
$TMPL['sidebar'] = $sidebar;
if (isset($_GET['logout']) == 1) {
$loggedIn->logOut();
header("Location: " . $CONF['url'] . "/index.php?a=welcome");
}
$TMPL['url'] = $CONF['url'];
$title = strip_tags(trim($title[2][0]));
$TMPL['title'] = ($_GET['type'] == 'report' || $_GET['type'] == 'stats' || $_GET['type'] == 'likes' || $_GET['type'] == 'edit' ? $LNG["{$_GET['type']}"] . ' - ' : '') . $title . ' - ' . $settings['title'];
$TMPL['meta_description'] = $title . ' ' . $feed->sidebarDescription($_GET['id'], 0, 1);
$skin = new skin('shared/content');
return $skin->make();
}
示例2: PageMain
function PageMain()
{
global $TMPL, $LNG, $CONF, $db, $loggedIn, $settings;
if (isset($_SESSION['username']) && isset($_SESSION['password']) || isset($_COOKIE['username']) && isset($_COOKIE['password'])) {
$verify = $loggedIn->verify();
}
// Start displaying the Feed
$feed = new feed();
$feed->db = $db;
$feed->url = $CONF['url'];
$feed->user = $verify;
$feed->id = $verify['idu'];
$feed->username = $verify['username'];
$feed->per_page = -1;
$feed->categories = $feed->getCategories();
$feed->time = $settings['time'];
$feed->c_start = 0;
$feed->l_per_post = 0;
if (isset($_SESSION['usernameAdmin']) && isset($_SESSION['passwordAdmin'])) {
$loggedInAdmin = new loggedInAdmin();
$loggedInAdmin->db = $db;
$loggedInAdmin->url = $CONF['url'];
$loggedInAdmin->username = $_SESSION['usernameAdmin'];
$loggedInAdmin->password = $_SESSION['passwordAdmin'];
$loggedIn = $loggedInAdmin->verify();
if ($loggedIn['username']) {
// Set admin level
$feed->is_admin = 1;
}
}
$TMPL_old = $TMPL;
$TMPL = array();
// Get the track
$playlist = $feed->getPlaylists(0, 3, $_GET['id']);
// Match the content from the song-title class in order to set it for the title tag
preg_match_all('/<div.*(class="playlist-title").*>([\\d\\D]*)<\\/div>/iU', $playlist[0], $title);
if (empty($title[2][0])) {
preg_match_all('/<div.*(class="page-header").*>([\\d\\D]*)<\\/div>/iU', $playlist[0], $title);
}
$TMPL['id'] = $_GET['id'];
$TMPL['url'] = $CONF['url'];
$TMPL['title'] = strip_tags($title[2][0]);
if (isset($_GET['edit']) && $feed->sidebarButton($_GET['id'], 2)) {
$skin = new skin('playlist/edit');
$rows = '';
// Send the form
if (isset($_POST['edit'])) {
$TMPL['message'] = $feed->managePlaylist($_GET['id'], 1, $_POST);
}
// Get the current values
list($TMPL['name'], $TMPL['description']) = $feed->managePlaylist($_GET['id'], 0);
// Reset the page title, and the content title
$TMPL['title'] = $title[2][0] = $TMPL['name'];
} else {
$skin = new skin('track/rows');
$rows = '';
// If the playlist id is not set, or it doesn't consist from digits
if (!isset($_GET['id']) || !ctype_digit($_GET['id'])) {
header("Location: " . $CONF['url']);
}
// If the output is empty redirect to home-page
if (empty($playlist[0])) {
header("Location: " . $CONF['url']);
}
$TMPL['messages'] = $playlist[0];
}
$rows = $skin->make();
$skin = new skin('playlist/sidebar');
$sidebar = '';
$TMPL['ad'] = generateAd($settings['ad5']);
// If the track can be viewed
if (!$playlist[1]) {
$TMPL['edit'] = $feed->sidebarButton($_GET['id'], 2);
$TMPL['description'] = $feed->sidebarDescription($_GET['id'], 1);
$TMPL['tags'] = $feed->sidebarKeywords($_GET['id'], 1);
}
$sidebar = $skin->make();
$TMPL = $TMPL_old;
unset($TMPL_old);
$TMPL['rows'] = $rows;
$TMPL['sidebar'] = $sidebar;
if (isset($_GET['logout']) == 1) {
$loggedIn->logOut();
header("Location: " . $CONF['url'] . "/index.php?a=welcome");
}
$TMPL['url'] = $CONF['url'];
$title = trim(strip_tags($title[2][0]));
$TMPL['title'] = $title . ' - ' . $settings['title'];
$TMPL['meta_description'] = $title . ' ' . $feed->sidebarDescription($_GET['id'], 1, 1);
$skin = new skin('shared/content');
return $skin->make();
}