forked from GNUsocial/gnu-social
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * StatusNet - the distributed open-source microblogging tool
 | |
|  * Copyright (C) 2011, StatusNet, Inc.
 | |
|  *
 | |
|  * Redirect to the appropriate top-of-site
 | |
|  * 
 | |
|  * 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  Action
 | |
|  * @package   GNUsocial
 | |
|  * @author    Evan Prodromou <evan@status.net>
 | |
|  * @author    Mikael Nordfeldth <mmn@hethane.se>
 | |
|  * @copyright 2010 StatusNet, Inc.
 | |
|  * @copyright 2015 Free Software Foundation, Inc.
 | |
|  * @license   https://www.gnu.org/licenses/agpl-3.0.html AGPL 3.0
 | |
|  * @link      https://gnu.io/social
 | |
|  */
 | |
| 
 | |
| if (!defined('GNUSOCIAL')) { exit(1); }
 | |
| 
 | |
| class TopAction extends ManagedAction
 | |
| {
 | |
|     public function showPage()
 | |
|     {
 | |
|         if (common_config('singleuser', 'enabled')) {
 | |
|             $user = User::singleUser();
 | |
|             common_redirect(common_local_url('showstream', array('nickname' => $user->getNickname())), 303);
 | |
|         } elseif (common_config('public', 'localonly')) {
 | |
|             common_redirect(common_local_url('public'), 303);
 | |
|         } else {
 | |
|             common_redirect(common_local_url('networkpublic'), 303);
 | |
|         }
 | |
|     }
 | |
| }
 |