addLocaleData(); } return $success; } /** * Get the supported contexts (e.g. BLOCK_CONTEXT_...) for this block. * @return array */ function getSupportedContexts() { return array(BLOCK_CONTEXT_LEFT_SIDEBAR, BLOCK_CONTEXT_RIGHT_SIDEBAR); } /** * Get the name of this plugin. The name must be unique within * its category. * @return String name of plugin */ function getName() { return 'UserBlockPlugin'; } /** * Install default settings on system install. * @return string */ function getInstallSitePluginSettingsFile() { return $this->getPluginPath() . '/settings.xml'; } /** * Install default settings on conference creation. * @return string */ function getNewConferencePluginSettingsFile() { return $this->getPluginPath() . '/settings.xml'; } /** * Get the display name of this plugin. * @return String */ function getDisplayName() { return Locale::translate('plugins.block.user.displayName'); } /** * Get a description of the plugin. */ function getDescription() { return Locale::translate('plugins.block.user.description'); } function getContents(&$templateMgr) { if (!defined('SESSION_DISABLE_INIT')) { $session =& Request::getSession(); $templateMgr->assign_by_ref('userSession', $session); $templateMgr->assign('loggedInUsername', $session->getSessionVar('username')); } return parent::getContents($templateMgr); } } ?>