1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-28 12:35:04 +03:00
ifhub.club/config/config.route.php

48 lines
1.3 KiB
PHP

<?
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Настройки роутинга страниц
* Определяет какой экшен должен запускаться при определенном УРЛе
*/
return array(
'page' => array(
'error' => 'ActionError',
'registration' => 'ActionRegistration',
'profile' => 'ActionProfile',
'my' => 'ActionMy',
'blog' => 'ActionBlog',
'log' => 'ActionLog',
'top' => 'ActionTop',
'index' => 'ActionIndex',
'new' => 'ActionNew',
'topic' => 'ActionTopic',
'page' => 'ActionPage',
'login' => 'ActionLogin',
'people' => 'ActionPeople',
'settings' => 'ActionSettings',
'tag' => 'ActionTag',
'comments' => 'ActionComments',
'talk' => 'ActionTalk',
'rss' => 'ActionRss',
),
'config' => array(
'action_default' => 'index',
'action_not_found' => 'error',
),
);
?>