1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 10:04:35 +02:00

index.php is now system entry point, front page detection moved to index controller; various stabillity fixes and url admin interface improvements; htaccess template modfied to meet entry point changes; front page preference values (Front Page admin page) prefixed with 'url:' and 'route:' now accepted and recognized; full backward compatibility so far.

This commit is contained in:
secretr
2011-12-01 22:08:23 +00:00
parent 63df20896c
commit e574d5f4f0
10 changed files with 501 additions and 200 deletions

View File

@@ -1,5 +1,16 @@
<?php
/*
* e107 website system
*
* Copyright (C) 2008-2011 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* System error controller
*
* $URL$
* $Id$
*/
class core_system_error_controller extends eController
{
function preAction()

View File

@@ -1,10 +1,20 @@
<?php
/*
* e107 website system
*
* Copyright (C) 2008-2011 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* System index controller
*
* $URL$
* $Id$
*/
class core_system_index_controller extends eController
{
/**
* Temporary redirect to site Index
* XXX - move the index.php Front page detection to index/index/index, make index.php the entry point and _forward here
* Redirect to site Index
*/
public function actionIndex()
{