Beispiel #1
0
 public function init()
 {
     try {
         $this->header('Content-Type: text/html');
     } catch (RequestHeadersAlreadySent $e) {
     }
     $this->theme = $this->appInstance->config->defaulttheme->value;
     $this->components = new Components($this);
     $this->startTime = microtime(true);
     $this->tpl = $this->appInstance->getQuickyInstance();
     $this->tpl->assign('req', $this);
 }