Exemplo n.º 1
0
 /**
  * Attaches Titan Framework to the Paradox
  */
 public function attachTitanFramework()
 {
     // If Titan Framework does not exists, quit
     if (!class_exists('ParadoxTitanFramework')) {
         return;
     }
     // Instantialize our less handler in this object
     $this->options = ParadoxTitanFramework::getInstance($this->id, array('css' => $this->config['frontendCSS'], 'multisite' => $this->config['multisite']));
     // Call out adminPages function
     $this->adminPages();
 }