本文整理汇总了PHP中BuckysUser::getUserNotificationSettings方法的典型用法代码示例。如果您正苦于以下问题:PHP BuckysUser::getUserNotificationSettings方法的具体用法?PHP BuckysUser::getUserNotificationSettings怎么用?PHP BuckysUser::getUserNotificationSettings使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BuckysUser
的用法示例。
在下文中一共展示了BuckysUser::getUserNotificationSettings方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addNotificationsForPendingPost
/**
* Add notification for the users whose 'My post approved' set 1.
*
* @param Int $ownerID
* @param Int $topicID
* @param Int $replyID
* @return bool
*/
public function addNotificationsForPendingPost($ownerID, $topicID, $replyID = null)
{
global $db, $TNB_GLOBALS;
$forumSettings = BuckysUser::getUserNotificationSettings($ownerID);
$activity = new BuckysActivity();
if ($forumSettings['notifyMyPostApproved']) {
if ($replyID == null) {
$activity->addForumActivity($ownerID, $topicID, 'forum', BuckysForumNotification::ACTION_TYPE_TOPIC_APPROVED, 0);
} else {
$activity->addForumActivity($ownerID, $topicID, 'forum', BuckysForumNotification::ACTION_TYPE_REPLY_APPROVED, $replyID);
}
}
return true;
}
示例2: dirname
<?php
require dirname(__FILE__) . '/includes/bootstrap.php';
if (!($userID = buckys_is_logged_in())) {
buckys_redirect('/index.php', MSG_NOT_LOGGED_IN_USER, MSG_TYPE_ERROR);
}
$view = [];
//Save Shipping info
$tradeUserIns = new BuckysTradeUser();
if (isset($_POST['action']) && $_POST['action'] == 'saveNotifyInfo') {
$result = BuckysUser::saveUserNotificationSettings($userID, $_POST);
if ($result === true) {
buckys_redirect('/notify.php', MSG_NOTIFICATION_SETTINGS_SAVED);
} else {
buckys_redirect('/notify.php', $result, MSG_TYPE_ERROR);
}
}
//Get offer_received info
$view['trade_user_info'] = $tradeUserIns->getUserByID($userID);
$userNotifyInfo = BuckysUser::getUserNotificationSettings($userID);
if (empty($view['trade_user_info'])) {
buckys_redirect('/index.php', MSG_INVALID_REQUEST, MSG_TYPE_ERROR);
}
buckys_enqueue_stylesheet('account.css');
buckys_enqueue_stylesheet('info.css');
$TNB_GLOBALS['content'] = 'notify';
$TNB_GLOBALS['title'] = 'Notification Settings - ' . TNB_SITE_NAME;
require DIR_FS_TEMPLATE . $TNB_GLOBALS['template'] . "/" . $TNB_GLOBALS['layout'] . ".php";