コード例 #1
0
ファイル: Statistics.php プロジェクト: rcrrich/cunity
 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->_templateFile = "statistics/" . $_GET['x'] . ".tpl";
     $this->registerCss("statistics", $_GET['x']);
     $this->show();
 }
コード例 #2
0
ファイル: Cunity.php プロジェクト: rcrrich/cunity
 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->_templateFile = "cunity/" . $_GET['x'] . ".tpl";
     $this->registerCss("cunity", $_GET['x']);
 }
コード例 #3
0
ファイル: Login.php プロジェクト: rcrrich/cunity
 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
 }
コード例 #4
0
ファイル: Dashboard.php プロジェクト: rcrrich/cunity
 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
     Login::loginRequired();
     $this->registerCss("dashboard", "dashboard");
 }
コード例 #5
0
ファイル: Appearance.php プロジェクト: rcrrich/cunity
 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->_templateFile = "appearance/" . $_GET['x'] . ".tpl";
     $this->registerCss("appearance", $_GET['x']);
 }