Exemple #1
0
 private function plusjade_hook()
 {
     # does plusjade need anything special on this page?
     if ('start' == $this->page_name) {
         $home = new Home_Controller();
         return $home->_index();
     }
     if ('utada' == $this->page_name and $this->client->can_edit($this->site_id)) {
         $utada = new Utada_Controller();
         return $utada->_index();
     }
     return FALSE;
 }