86 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * StatusNet - the distributed open-source microblogging tool
 | |
|  * Copyright (C) 2011, StatusNet, Inc.
 | |
|  *
 | |
|  * Secondary menu, shown at foot of all pages
 | |
|  * 
 | |
|  * PHP version 5
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  *
 | |
|  * @category  Cache
 | |
|  * @package   StatusNet
 | |
|  * @author    Evan Prodromou <evan@status.net>
 | |
|  * @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 <evan@status.net>
 | |
|  * @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');
 | |
|     }
 | |
| } |