Exemple #1
0
 protected function initModules()
 {
     parent::initModules();
     // append instance name to base URIs
     if (substr($this->secure_base_uri, 0, 1) !== '/') {
         $this->base_uri = str_replace('/blorgy/', '/' . $_SERVER['SERVER_NAME'] . '/', $this->base_uri);
         $this->secure_base_uri = str_replace('/blorgy/', '/blorgy-' . $this->instance->getInstance()->shortname . '/', $this->secure_base_uri);
     }
     $this->theme->set($this->config->site->theme);
     $this->analytics->setGoogleAccount($this->config->analytics->google_account);
 }