Exemple #1
0
 protected function buildDebug()
 {
     if (Config::Get('debug')) {
         $this->template->assign('db_access', SQLite::Access());
         $timeend = microtime(true);
         $this->template->assign('build_time', number_format(($timeend - $this->timestart) * 1000, 2));
     }
     $this->template->assign('debug', Config::Get('debug'));
 }