getPluginPath() . '/settings.xml'; } /** * Install default settings on journal creation. * @return string */ function getContextSpecificPluginSettingsFile() { return $this->getPluginPath() . '/settings.xml'; } /** * Get the display name of this plugin. * @return String */ function getDisplayName() { return __('plugins.block.notification.displayName'); } /** * Get a description of the plugin. */ function getDescription() { return __('plugins.block.notification.description'); } function getContents(&$templateMgr) { $user =& Request::getUser(); $journal =& Request::getJournal(); if ($user && $journal) { $userId = $user->getId(); $notificationDao =& DAORegistry::getDAO('NotificationDAO'); $templateMgr->assign('unreadNotifications', $notificationDao->getNotificationCount(false, $userId, $journal->getId())); } return parent::getContents($templateMgr); } } ?>