当前位置: 首页>>代码示例>>PHP>>正文


PHP NotificationManager::getFormattedNotificationsForUser方法代码示例

本文整理汇总了PHP中NotificationManager::getFormattedNotificationsForUser方法的典型用法代码示例。如果您正苦于以下问题:PHP NotificationManager::getFormattedNotificationsForUser方法的具体用法?PHP NotificationManager::getFormattedNotificationsForUser怎么用?PHP NotificationManager::getFormattedNotificationsForUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在NotificationManager的用法示例。


在下文中一共展示了NotificationManager::getFormattedNotificationsForUser方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: notificationFeed

 /**
  * Fetch the actual RSS feed
  * @param $args array
  * @param $request Request
  */
 function notificationFeed($args, &$request)
 {
     if (isset($args[0]) && isset($args[1])) {
         $type = $args[0];
         $token = $args[1];
     } else {
         return false;
     }
     $this->setupTemplate(true);
     $application = PKPApplication::getApplication();
     $appName = $application->getNameKey();
     $site =& $request->getSite();
     $siteTitle = $site->getLocalizedTitle();
     $notificationSubscriptionSettingsDao =& DAORegistry::getDAO('NotificationSubscriptionSettingsDAO');
     $context =& $request->getContext();
     $userId = $notificationSubscriptionSettingsDao->getUserIdByRSSToken($token, $context->getId());
     // Make sure the feed type is specified and valid
     $typeMap = array('rss' => 'rss.tpl', 'rss2' => 'rss2.tpl', 'atom' => 'atom.tpl');
     $contentTypeMap = array('rss' => 'rssContent.tpl', 'rss2' => 'rss2Content.tpl', 'atom' => 'atomContent.tpl');
     $mimeTypeMap = array('rss' => 'application/rdf+xml', 'rss2' => 'application/rss+xml', 'atom' => 'application/atom+xml');
     if (!isset($typeMap[$type])) {
         return false;
     }
     $notificationManager = new NotificationManager();
     $notifications = $notificationManager->getFormattedNotificationsForUser($request, $userId, NOTIFICATION_LEVEL_NORMAL, $context->getId(), null, 'notification/' . $contentTypeMap[$type]);
     $versionDao =& DAORegistry::getDAO('VersionDAO');
     $version = $versionDao->getCurrentVersion();
     $templateMgr =& TemplateManager::getManager();
     $templateMgr->assign('version', $version->getVersionString());
     $templateMgr->assign('selfUrl', $request->getCompleteUrl());
     $templateMgr->assign('locale', AppLocale::getPrimaryLocale());
     $templateMgr->assign('appName', $appName);
     $templateMgr->assign('siteTitle', $siteTitle);
     $templateMgr->assign_by_ref('formattedNotifications', $notifications);
     $templateMgr->display('notification/' . $typeMap[$type], $mimeTypeMap[$type]);
     return true;
 }
开发者ID:yuricampos,项目名称:ojs,代码行数:42,代码来源:NotificationHandler.inc.php


注:本文中的NotificationManager::getFormattedNotificationsForUser方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。