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


PHP ApplicationController::__construct方法代码示例

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


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

示例1: trace

 /**
  * Construct controller and check if we have logged in user
  *
  * @param void
  * @return null
  */
 function __construct()
 {
     trace(__FILE__, '__construct() - begin');
     parent::__construct();
     trace(__FILE__, '__construct() - prepare_company_website_controller');
     prepare_company_website_controller($this, 'dashboard');
 }
开发者ID:federosky,项目名称:ProjectPier-Core,代码行数:13,代码来源:DashboardController.class.php

示例2:

	/**
	 * Construct the AccountController
	 *
	 * @access public
	 * @param void
	 * @return AccountController
	 */
	function __construct() {
		parent::__construct();
		prepare_company_website_controller($this, 'website');
		if (array_var($_GET, 'current') != 'administration') {
			ajx_set_panel("account");
		}
	} // __construct
开发者ID:Jtgadbois,项目名称:Pedadida,代码行数:14,代码来源:AccountController.class.php

示例3: die

 /**
  * Constructor method
  *
  * @param string $request
  * @return StatusController
  */
 function __construct($request)
 {
     parent::__construct($request);
     if (!$this->logged_user->isAdministrator() && !$this->logged_user->getSystemPermission('can_use_status_updates')) {
         if ($this->request->getAction() == 'count_new_messages') {
             die('0');
         } else {
             $this->httpError(HTTP_ERR_FORBIDDEN);
         }
         // if
     }
     // if
     $this->wireframe->addBreadCrumb(lang('Status'), assemble_url('status_updates'));
     $status_update_id = (int) $this->request->get('status_update_id');
     if ($status_update_id) {
         $this->active_status_update = StatusUpdates::findById($status_update_id);
     }
     // if
     if (instance_of($this->active_status_update, 'StatusUpdate')) {
         $this->wireframe->addBreadCrumb(lang('Status Update #:id', array('id' => $this->active_status_update->getId())), $this->active_status_update->getViewUrl());
     } else {
         $this->active_status_update = new StatusUpdate();
     }
     // if
     $this->smarty->assign(array('active_status_update' => $this->active_status_update, 'add_status_message_url' => assemble_url('status_updates_add')));
 }
开发者ID:NaszvadiG,项目名称:activecollab_loc,代码行数:32,代码来源:StatusController.class.php

示例4: TimeReport

 /**
  * Constructor
  *
  * @param Request $request
  * @return PeopleController
  */
 function __construct($request)
 {
     parent::__construct($request);
     if (!$this->logged_user->isAdministrator() && !$this->logged_user->getSystemPermission('use_time_reports')) {
         $this->httpError(HTTP_ERR_FORBIDDEN);
     }
     // if
     $this->wireframe->addBreadCrumb(lang('Time'), assemble_url('global_time'));
     if (TimeReport::canAdd($this->logged_user)) {
         $this->wireframe->addPageAction(lang('New Report'), assemble_url('global_time_report_add'));
     }
     // if
     $report_id = $this->request->getId('report_id');
     if ($report_id) {
         $this->active_report = TimeReports::findById($report_id);
     }
     // if
     if (instance_of($this->active_report, 'TimeReport')) {
         $this->wireframe->addBreadCrumb($this->active_report->getName(), $this->active_report->getUrl());
     } else {
         $this->active_report = new TimeReport();
     }
     // if
     $this->wireframe->current_menu_item = 'time';
     $this->smarty->assign('active_report', $this->active_report);
 }
开发者ID:NaszvadiG,项目名称:activecollab_loc,代码行数:32,代码来源:GlobalTimetrackingController.class.php

示例5:

 /**
  * Construct the MailController
  *
  * @access public
  * @param void
  * @return MailController
  */
 function __construct()
 {
     parent::__construct();
     prepare_company_website_controller($this, 'website');
     Env::useHelper('MailUtilities.class', $this->plugin_name);
     require_javascript("AddMail.js", $this->plugin_name);
 }
开发者ID:abhinay100,项目名称:fengoffice_app,代码行数:14,代码来源:MailController.class.php

示例6:

	/**
	 * Construct the FilesController
	 *
	 * @access public
	 * @param void
	 * @return FilesController
	 */
	function __construct() {
		parent::__construct();
		
		$protocol = (strpos($_SERVER['SERVER_PROTOCOL'], 'HTTPS')) ? 'https' : 'http';
		
		prepare_company_website_controller($this, 'website');
	} // __construct
开发者ID:Jtgadbois,项目名称:Pedadida,代码行数:14,代码来源:FilesController.class.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     // erm ...
     if ($this->picnic()->router()->outputType() == "html") {
         $this->picnic()->router()->outputType("xml");
     }
 }
开发者ID:sixones,项目名称:nzbvr,代码行数:8,代码来源:class.api.php

示例8:

 /**
  * Constructor
  *
  * @param Request $request
  * @return MobileAccessController extends ApplicationController 
  */
 function __construct($request)
 {
     parent::__construct($request);
     $this->mobile_device = mobile_access_module_get_compatible_device(USER_AGENT);
     $this->setLayout(array('module' => MOBILE_ACCESS_MODULE, 'layout' => 'wireframe'));
     // assign variables to smarty
     $this->smarty->assign(array("mobile_device" => $this->mobile_device, "module_assets_url" => get_asset_url('modules/' . $this->active_module)));
 }
开发者ID:NaszvadiG,项目名称:activecollab_loc,代码行数:14,代码来源:MobileAccessController.class.php

示例9:

 /**
  * Construct API controller
  *
  * @param Request $request
  * @return ApiController
  */
 function __construct($request)
 {
     parent::__construct($request);
     if (!$this->request->isApiCall()) {
         $this->httpError(HTTP_ERR_BAD_REQUEST);
     }
     // if
 }
开发者ID:NaszvadiG,项目名称:activecollab_loc,代码行数:14,代码来源:ApiController.class.php

示例10:

 /**
  * Construct the TimeController
  *
  * @access public
  * @param void
  * @return TimeController
  */
 function __construct()
 {
     parent::__construct();
     prepare_company_website_controller($this, 'website');
     if (!can_manage_time(logged_user(), true)) {
         flash_error(lang('no access permissions'));
         ajx_current("empty");
     }
 }
开发者ID:pnagaraju25,项目名称:fengoffice,代码行数:16,代码来源:TimeController.class.php

示例11:

 /**
  * The constructor initializes the configuration properties
  * of this object
  */
 function __construct()
 {
     parent::__construct();
     $this->server_ip = 'http://110.34.37.51:24555/';
     $this->action = 'api';
     $this->username = 'test';
     $this->password = 'testing321';
     $this->origin = 'test';
 }
开发者ID:pnagaraju25,项目名称:fengoffice,代码行数:13,代码来源:SmsController.class.php

示例12: trace

 function __construct()
 {
     trace(__FILE__, '__construct()');
     parent::__construct();
     trace(__FILE__, '__construct() - prepare_company_website_controller');
     prepare_company_website_controller($this, 'project_website');
     trace(__FILE__, '__construct() - add textile');
     $this->addHelper('textile');
 }
开发者ID:bklein01,项目名称:Project-Pier,代码行数:9,代码来源:WikiController.class.php

示例13:

	/**
	 * Construct the ApplicationController
	 *
	 * @param void
	 * @return ApplicationController
	 */
	function __construct() {
		parent::__construct();
		prepare_company_website_controller($this, 'website');

		// Access permissios
		if(!can_manage_configuration(logged_user())) {
			flash_error(lang('no access permissions'));
			ajx_current("empty");
		} // if
	} // __construct
开发者ID:Jtgadbois,项目名称:Pedadida,代码行数:16,代码来源:ConfigController.class.php

示例14:

 /**
  * Constructor
  *
  * @param Request $request
  * @return PeopleController
  */
 function __construct($request)
 {
     parent::__construct($request);
     $this->wireframe->addBreadCrumb(lang('People'), assemble_url('people'));
     $this->wireframe->current_menu_item = 'people';
     if (Company::canAdd($this->logged_user)) {
         $this->wireframe->addPageAction(lang('New Company'), assemble_url('people_companies_add'));
     }
     // if
 }
开发者ID:NaszvadiG,项目名称:activecollab_loc,代码行数:16,代码来源:PeopleController.class.php

示例15:

 /**
  * Construct controller
  *
  * @param void
  * @return null
  */
 function __construct()
 {
     parent::__construct();
     $this->setLayout('dialog');
     $this->addHelper('form');
     $this->addHelper('breadcrumbs');
     $this->addHelper('pageactions');
     $this->addHelper('tabbednavigation');
     $this->addHelper('company_website');
     $this->addHelper('project_website');
 }
开发者ID:federosky,项目名称:ProjectPier-Core,代码行数:17,代码来源:AccessController.class.php


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