本文整理汇总了PHP中ApplicationController类的典型用法代码示例。如果您正苦于以下问题:PHP ApplicationController类的具体用法?PHP ApplicationController怎么用?PHP ApplicationController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ApplicationController类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInstance
public static function getInstance()
{
if (!isset(self::$instance)) {
self::$instance = new ApplicationController();
}
return self::$instance;
}
示例2:
/**
* 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)));
}
示例3: beforeInitialize
function beforeInitialize()
{
parent::beforeInitialize();
if ($_SESSION['isTestMode']) {
$this->redirect('index.php', 'Sorry... PBXww is working only in production mode', 'danger');
}
}
示例4:
/**
* 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
示例5: 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')));
}
示例6: 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);
}
示例7: 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');
}
示例8:
/**
* 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);
}
示例9: controller_global
public function controller_global()
{
$this->body_id = parent::get_body_id();
$this->body_class = parent::get_body_class();
$this->flickr = new Flickr($this->flickr_secret_key, true);
$this->section_stack[0] = "gallery";
}
示例10:
/**
* 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
示例11: init
public function init()
{
parent::init();
$this->getView()->breadcrumb[] = array('Home', array('module' => 'admin', 'controller' => 'index', 'action' => 'index'));
$this->getView()->setLayout('default');
$this->getView()->setScriptPath(APPLICATION_PATH . DS . 'modules' . DS . 'Admin' . DS . 'views');
//$this->getView()->assign('breadcrumb', $this->breadcrumb);
}
示例12:
/**
* 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
}
示例13: __construct
public function __construct()
{
parent::__construct();
// erm ...
if ($this->picnic()->router()->outputType() == "html") {
$this->picnic()->router()->outputType("xml");
}
}
示例14: controller_global
public function controller_global()
{
WaxEvent::add("cms.cms_stack_set", function () {
$obj = WaxEvent::data();
array_unshift($obj->cms_stack, $obj->controller);
});
parent::controller_global();
}
示例15:
function before_action()
{
parent::before_action();
$this->current_user = User::find($_SESSION['user_id']);
if (!$this->current_user) {
$this->redirect('/');
}
}