本文整理汇总了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');
}
示例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
示例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')));
}
示例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);
}
示例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);
}
示例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
示例7: __construct
public function __construct()
{
parent::__construct();
// erm ...
if ($this->picnic()->router()->outputType() == "html") {
$this->picnic()->router()->outputType("xml");
}
}
示例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)));
}
示例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
}
示例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");
}
}
示例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';
}
示例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');
}
示例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
示例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
}
示例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');
}