本文整理汇总了PHP中feed::sidebarNotifications方法的典型用法代码示例。如果您正苦于以下问题:PHP feed::sidebarNotifications方法的具体用法?PHP feed::sidebarNotifications怎么用?PHP feed::sidebarNotifications使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类feed
的用法示例。
在下文中一共展示了feed::sidebarNotifications方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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();
if (empty($verify['username'])) {
// If fake cookies are set, or they are set wrong, delete everything and redirect to home-page
$loggedIn->logOut();
header("Location: " . $CONF['url'] . "/index.php?a=welcome");
} else {
// Start displaying the Feed
$feed = new feed();
$feed->db = $db;
$feed->url = $CONF['url'];
$feed->username = $verify['username'];
$feed->id = $verify['idu'];
$feed->per_page = $settings['perpage'];
$feed->time = $settings['time'];
$feed->c_per_page = $settings['cperpage'];
$feed->c_start = 0;
$feed->subscriptionsList = $feed->getSubs($verify['idu'], 0);
$feed->subscribersList = $feed->getSubs($verify['idu'], 1);
// $feed->image = $verify['image'];
$TMPL['uid'] = $verify['idu'];
$TMPL_old = $TMPL;
$TMPL = array();
$skin = new skin('shared/rows');
$rows = '';
if (empty($_GET['filter'])) {
$_GET['filter'] = '';
}
// Allowed types
if ($_GET['filter'] == 'likes') {
$x = $feed->checkNewNotifications($settings['nperpage'], 2, 2, 1, null, null, null);
} elseif ($_GET['filter'] == 'comments') {
$x = $feed->checkNewNotifications($settings['nperpage'], 2, 2, null, 1, null, null);
} elseif ($_GET['filter'] == 'friendships') {
$x = $feed->checkNewNotifications($settings['nperpage'], 2, 2, null, null, 1, null);
} elseif ($_GET['filter'] == 'chats') {
$x = $feed->checkNewNotifications($settings['nperpage'], 2, 2, null, null, null, 1);
} else {
$x = $feed->checkNewNotifications($settings['nperpage'], 2, 2, 1, 1, 1, 1);
}
$TMPL['messages'] = '<div class="message-content" id="notifications-page"><div style="margin-top:-1px;">' . $x . '</div></div>';
$rows = $skin->make();
$skin = new skin('shared/sidebar');
$sidebar = '';
$TMPL['sidebar'] = $feed->sidebarNotifications($_GET['filter'], 'feed');
$TMPL['ad3'] = generateAd($settings['ad3']);
$sidebar = $skin->make();
$TMPL = $TMPL_old;
unset($TMPL_old);
$TMPL['rows'] = $rows;
$TMPL['sidebar'] = $sidebar;
}
} else {
// If the session or cookies are not set, redirect to home-page
header("Location: " . $CONF['url'] . "/index.php?a=welcome");
}
if (isset($_GET['logout']) == 1) {
$loggedIn->logOut();
header("Location: " . $CONF['url'] . "/index.php?a=welcome");
}
$TMPL['url'] = $CONF['url'];
$TMPL['title'] = $LNG['title_notifications'] . ' - ' . $settings['title'];
$TMPL['header'] = pageHeader($LNG['title_notifications']);
$skin = new skin('shared/content');
return $skin->make();
}