当前位置: 首页>>代码示例>>PHP>>正文


PHP Application::Application方法代码示例

本文整理汇总了PHP中Application::Application方法的典型用法代码示例。如果您正苦于以下问题:PHP Application::Application方法的具体用法?PHP Application::Application怎么用?PHP Application::Application使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Application的用法示例。


在下文中一共展示了Application::Application方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

  public function __construct($config,$group="") 
  {
//    $this->starttime = microtime(); 
    parent::Application($config,$group);

  	// $this->fredcontrol = new FredControl();
  	// $this->lua = new LUA();

	$this->Core = new Core(&$this);
  $this->DB             = new DB("fred-gui2.db");
/*
  if ($this->Core->OnlineCheck()) {
    $this->Tpl->Set(NETWORKMAIN,"<FONT COLOR=#009900 style=\"border:1px solid white; border-radius:4px; background-color:white;\">&nbsp;<B>ONLINE</B>&nbsp;</FONT>");
  } else {
    $this->Tpl->Set(NETWORKMAIN,"<FONT COLOR=#DD0000 style=\"border:1px solid white; border-radius:4px; background-color:white;\">&nbsp;<B>OFFLINE</B>&nbsp;</FONT>");
  }
*/

	$this->Tpl->ReadTemplatesFromPath("./pages/content/"); // ca. 200ms
 //	$device =  $this->mobile_user_agent_switch();

	$this->Tpl->Set(THEME,"fredgui");
	$this->Tpl->ReadTemplatesFromPath("./themes/fredgui/templates/");


   $module = $this->Secure->GetGET("module");
   $action = $this->Secure->GetGET("lock");

		if(is_file("/home/picosafe/.webguilock"))
		{
			if($module!="welcome" && $module!="lock" && is_file("/home/picosafe/.webguilock"))
				header("Location: index.php?module=welcome&action=lock");
		} 
  }
开发者ID:Otti0815,项目名称:picosafe_webgui,代码行数:34,代码来源:fredgui.php

示例2: GDS

 function GDS()
 {
     parent::Application();
     if ($this->uri->segment(2) !== 'demo') {
         $this->auth->restrict('user');
     }
 }
开发者ID:homebru,项目名称:bandb,代码行数:7,代码来源:gds.php

示例3: Users

 function Users()
 {
     parent::Application();
     $this->auth->restrict('admin');
     // restrict this controller to admins only
     $this->load->model($this->models . "usermodel", 'users');
     // Load the user model - gets lists of users etc
 }
开发者ID:alijanah,项目名称:the-codeigniter-authentication-library,代码行数:8,代码来源:users.php

示例4: Pages

 function Pages()
 {
     parent::Application();
     $this->auth->restrict('editor');
     // restrict this controller to editor and above
     $this->load->model($this->models . "pagemodel", 'pages');
     // Load the page model
 }
开发者ID:simonhoye,项目名称:Fresh,代码行数:8,代码来源:pages.php

示例5: SitePasswords

 function SitePasswords()
 {
     parent::Application();
     if ($this->uri->segment(1) === 'maintenance') {
         $this->auth->restrict('admin');
         $this->load->scaffolding('SitePasswords');
     }
 }
开发者ID:homebru,项目名称:bandb,代码行数:8,代码来源:sitepasswords.php

示例6: Pricing

 function Pricing()
 {
     parent::Application();
 }
开发者ID:homebru,项目名称:bandb,代码行数:4,代码来源:pricing.php

示例7: AdPackage

 function AdPackage()
 {
     parent::Application();
     $this->auth->restrict('admin');
     $this->load->scaffolding('AdPackage');
 }
开发者ID:homebru,项目名称:bandb,代码行数:6,代码来源:adpackage.php

示例8: Dashboard

 function Dashboard()
 {
     parent::Application();
 }
开发者ID:narendranag,项目名称:Snippets,代码行数:4,代码来源:dashboard.php

示例9: Help

 function Help()
 {
     parent::Application();
 }
开发者ID:narendranag,项目名称:dockets,代码行数:4,代码来源:help.php

示例10: EditMethod

 function EditMethod()
 {
     parent::Application();
     $this->auth->restrict('admin');
     $this->load->scaffolding('EditMethod');
 }
开发者ID:homebru,项目名称:bandb,代码行数:6,代码来源:editmethod.php

示例11: Home

 function Home()
 {
     parent::Application();
 }
开发者ID:homebru,项目名称:bandb,代码行数:4,代码来源:home.php

示例12: Publishers

 function Publishers()
 {
     parent::Application();
 }
开发者ID:homebru,项目名称:bandb,代码行数:4,代码来源:publishers.php

示例13:

 function Client_Detail()
 {
     parent::Application();
     $this->auth->restrict('admin');
 }
开发者ID:homebru,项目名称:bandb,代码行数:5,代码来源:client_detail.php

示例14:

 function Admin_Scripts()
 {
     parent::Application();
     $this->auth->restrict('user');
 }
开发者ID:homebru,项目名称:bandb,代码行数:5,代码来源:admin_scripts.php

示例15: Dockets

 function Dockets()
 {
     parent::Application();
 }
开发者ID:narendranag,项目名称:dockets,代码行数:4,代码来源:dockets.php


注:本文中的Application::Application方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。