diff --git a/override/classes/_FrontController.php b/override/classes/_FrontController.php
index 518b0e199..d05e59f6e 100755
--- a/override/classes/_FrontController.php
+++ b/override/classes/_FrontController.php
@@ -1,6 +1,6 @@
'.round($n, 2).' Mb';
return ''.round($n, 2).' Mb';
}
-
+
private function displaySQLQueries($n)
{
if ($n > 150)
@@ -111,7 +111,7 @@ class FrontController extends FrontControllerCore
return ''.$n.' queries';
return ''.$n.' quer'.($n == 1 ? 'y' : 'ies').'';
}
-
+
private function displayLoadTimeColor($n, $kikoo = false)
{
if ($n > 1)
@@ -120,7 +120,7 @@ class FrontController extends FrontControllerCore
return ''.round($n * 1000).'ms'.($kikoo ? '
I hope it is a shared hosting' : '');
return ''.round($n * 1000).'ms'.($kikoo ? '
Good boy! That\'s what I call a webserver!' : '');
}
-
+
private function getTimeColor($n)
{
if ($n > 4)
@@ -129,7 +129,7 @@ class FrontController extends FrontControllerCore
return 'style="color:orange"';
return 'style="color:green"';
}
-
+
private function getQueryColor($n)
{
if ($n > 5)
@@ -138,7 +138,7 @@ class FrontController extends FrontControllerCore
return 'style="color:orange"';
return 'style="color:green"';
}
-
+
private function getTableColor($n)
{
if ($n > 30)
@@ -147,24 +147,26 @@ class FrontController extends FrontControllerCore
return 'style="color:orange"';
return 'style="color:green"';
}
-
+
public function __construct()
{
+ parent::__construct();
+
// error management
set_error_handler('developpementErrorHandler');
ini_set('html_errors', 'on');
ini_set('display_errors', 'on');
error_reporting(E_ALL | E_STRICT);
-
+
$this->_memory = array_fill(0, 10, 0);
$this->_time = array_fill(0, 10, 0);
// Usually set in the parent constructor, but here I need it to evaluate init()
$useSSL = $this->ssl;
-
+
if (!self::$_footer)
return;
-
+
$this->_memory[-3] = memory_get_usage();
$this->_time[-3] = microtime(true);
$this->init();
@@ -174,29 +176,46 @@ class FrontController extends FrontControllerCore
$this->_memory[-1] = memory_get_usage();
$this->_time[-1] = microtime(true);
}
-
+
public function run()
{
$this->_memory[0] = memory_get_usage();
$this->_time[0] = microtime(true);
- $this->preProcess();
+ $this->init();
+
$this->_memory[1] = memory_get_usage();
$this->_time[1] = microtime(true);
- $this->setMedia();
+ if ($this->ajax && method_exists($this, 'ajaxProcess'))
+ $this->ajaxProcess();
+ else
+ $this->postProcess();
+
$this->_memory[2] = memory_get_usage();
$this->_time[2] = microtime(true);
- $this->displayHeader();
+ if ($this->displayHeader)
+ {
+ $this->setMedia();
+ $this->initHeader();
+ }
+
$this->_memory[3] = memory_get_usage();
$this->_time[3] = microtime(true);
- $this->process();
+ $this->initContent();
+
+
$this->_memory[4] = memory_get_usage();
$this->_time[4] = microtime(true);
- $this->displayContent();
+ if ($this->displayFooter)
+ $this->initFooter();
+
$this->_memory[5] = memory_get_usage();
$this->_time[5] = microtime(true);
- $this->displayFooter();
+ if ($this->ajax && method_exists($this, 'displayAjax'))
+ $this->displayAjax();
+ else
+ $this->display();
}
-
+
function ini_get_display_errors()
{
$a = 'display_errors';
@@ -217,31 +236,33 @@ class FrontController extends FrontControllerCore
private function sizeofvar($var)
{
- $start_memory = memory_get_usage();
- $tmp = unserialize(serialize($var));
+ $start_memory = memory_get_usage();
+ $tmp = unserialize(serialize($var));
$size = memory_get_usage() - $start_memory;
return $size;
}
-
- public function displayFooter()
+
+ public function display()
{
global $start_time;
-
+
+ parent::display();
+
if (self::$_footer)
parent::displayFooter();
-
+
if (!$this->ini_get_display_errors())
return;
-
+
$this->_memory[6] = memory_get_usage();
$this->_time[6] = microtime(true);
-
+
$hr = '