function __construct($conf, $page = "home")
 {
     parent::__construct();
     $this->conf = $conf;
     if ($page == "mail") {
         $this->returned = $this->charg_mail_css();
     } else {
         $this->returned = $this->charg_css($page);
         $this->returned .= $this->charg_favicon();
     }
 }
 function __construct($conf, $ajax = "error")
 {
     parent::__construct();
     $this->conf = $conf;
     if ($ajax == "mail") {
         $this->returned = $this->charg_mail_css();
     } else {
         $this->returned = $this->charg_css($ajax);
         $this->returned .= $this->charg_favicon();
     }
 }
示例#3
0
 function __construct($conf, $ajax = "home")
 {
     parent::__construct();
     $this->conf = $conf;
     $this->returned = $this->charg_js($ajax);
 }
 function __construct()
 {
     parent::__construct();
     $this->charg_conf();
 }