本文整理汇总了PHP中feed::checkNewNotifications方法的典型用法代码示例。如果您正苦于以下问题:PHP feed::checkNewNotifications方法的具体用法?PHP feed::checkNewNotifications怎么用?PHP feed::checkNewNotifications使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类feed
的用法示例。
在下文中一共展示了feed::checkNewNotifications方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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();
}
示例2: loggedIn
echo "Failed to connect to MySQL: (" . $db->connect_errno . ") " . $db->connect_error;
}
$db->set_charset("utf8");
$resultSettings = $db->query(getSettings());
$settings = $resultSettings->fetch_assoc();
// The theme complete url
$CONF['theme_url'] = $CONF['theme_path'] . '/' . $settings['theme'];
if (isset($_SESSION['username']) && isset($_SESSION['password']) || isset($_COOKIE['username']) && isset($_COOKIE['password'])) {
$loggedIn = new loggedIn();
$loggedIn->db = $db;
$loggedIn->url = $CONF['url'];
$loggedIn->username = isset($_SESSION['username']) ? $_SESSION['username'] : $_COOKIE['username'];
$loggedIn->password = isset($_SESSION['password']) ? $_SESSION['password'] : $_COOKIE['password'];
$verify = $loggedIn->verify();
if ($verify['username']) {
$feed = new feed();
$feed->db = $db;
$feed->url = $CONF['url'];
$feed->username = $verify['username'];
$feed->id = $verify['idu'];
$feed->time = $settings['time'];
$feed->per_page = $settings['perpage'];
$feed->c_per_page = $settings['cperpage'];
$feed->c_start = 0;
if ($_POST['for'] == 1) {
echo $feed->checkNewNotifications($settings['nperwidget'], $_POST['type'], $_POST['for'], $verify['notificationl'], $verify['notificationc'], $verify['notificationf'], $verify['notificationd']);
} else {
echo $feed->checkNewNotifications($settings['nperwidget'], $_POST['type'], $_POST['for'], $verify['notificationl'], $verify['notificationc'], $verify['notificationf'], $verify['notificationd']);
}
}
}