. * * @category Cache * @package StatusNet * @author Evan Prodromou * @copyright 2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ if (!defined('STATUSNET')) { // This check helps protect against security problems; // your code file can't be executed directly from the web. exit(1); } /** * Secondary menu, shown at the bottom of all pages * * @category General * @package StatusNet * @author Evan Prodromou * @copyright 2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ class SecondaryNav extends Menu { function show() { $this->out->elementStart('ul', array('class' => 'nav', 'id' => 'site_nav_global_secondary')); if (Event::handle('StartSecondaryNav', array($this->action))) { $this->out->menuItem(common_local_url('doc', array('title' => 'help')), // TRANS: Secondary navigation menu item leading to help on StatusNet. _m('MENU','Help')); $this->out->menuItem(common_local_url('doc', array('title' => 'about')), // TRANS: Secondary navigation menu item leading to text about StatusNet site. _m('MENU','About')); $this->out->menuItem(common_local_url('doc', array('title' => 'faq')), // TRANS: Secondary navigation menu item leading to Frequently Asked Questions. _m('MENU','FAQ')); $bb = common_config('site', 'broughtby'); if (!empty($bb)) { $this->out->menuItem(common_local_url('doc', array('title' => 'tos')), // TRANS: Secondary navigation menu item leading to Terms of Service. _m('MENU','TOS')); } $this->out->menuItem(common_local_url('doc', array('title' => 'privacy')), // TRANS: Secondary navigation menu item leading to privacy policy. _m('MENU','Privacy')); $this->out->menuItem(common_local_url('doc', array('title' => 'source')), // TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. _m('MENU','Source')); $this->out->menuItem(common_local_url('version'), // TRANS: Secondary navigation menu item leading to version information on the StatusNet site. _m('MENU','Version')); $this->out->menuItem(common_local_url('doc', array('title' => 'contact')), // TRANS: Secondary navigation menu item leading to e-mail contact information on the // TRANS: StatusNet site, where to report bugs, ... _m('MENU','Contact')); Event::handle('EndSecondaryNav', array($this->action)); } $this->out->elementEnd('ul'); } }