| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  | <?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')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item leading to help on StatusNet.
 | 
					
						
							|  |  |  |                                  _m('MENU','Help')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $this->out->menuItem(common_local_url('doc', array('title' => 'about')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item leading to text about StatusNet site.
 | 
					
						
							|  |  |  |                                  _m('MENU','About')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $this->out->menuItem(common_local_url('doc', array('title' => 'faq')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item leading to Frequently Asked Questions.
 | 
					
						
							|  |  |  |                                  _m('MENU','FAQ')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $bb = common_config('site', 'broughtby'); | 
					
						
							|  |  |  |             if (!empty($bb)) { | 
					
						
							|  |  |  |                 $this->out->menuItem(common_local_url('doc', array('title' => 'tos')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                      // TRANS: Secondary navigation menu item leading to Terms of Service.
 | 
					
						
							|  |  |  |                                      _m('MENU','TOS')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |             $this->out->menuItem(common_local_url('doc', array('title' => 'privacy')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item leading to privacy policy.
 | 
					
						
							|  |  |  |                                  _m('MENU','Privacy')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $this->out->menuItem(common_local_url('doc', array('title' => 'source')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license.
 | 
					
						
							|  |  |  |                                  _m('MENU','Source')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $this->out->menuItem(common_local_url('version'), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item leading to version information on the StatusNet site.
 | 
					
						
							|  |  |  |                                  _m('MENU','Version')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $this->out->menuItem(common_local_url('doc', array('title' => 'contact')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item leading to e-mail contact information on the
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |                                  // TRANS: StatusNet site, where to report bugs, ...
 | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  _m('MENU','Contact')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             $this->out->menuItem(common_local_url('doc', array('title' => 'badge')), | 
					
						
							| 
									
										
										
										
											2011-04-01 19:46:40 +02:00
										 |  |  |                                  // TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget.
 | 
					
						
							|  |  |  |                                  _m('MENU','Badge')); | 
					
						
							| 
									
										
										
										
											2011-03-01 05:46:03 -05:00
										 |  |  |             Event::handle('EndSecondaryNav', array($this->action)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $this->out->elementEnd('ul'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |