本文整理汇总了PHP中WFController类的典型用法代码示例。如果您正苦于以下问题:PHP WFController类的具体用法?PHP WFController怎么用?PHP WFController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WFController类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: jimport
JRequest::setVar('task', null);
}
// import library dependencies
jimport('joomla.application.component.helper');
jimport('joomla.application.component.controller');
// Require the base controller
require_once WF_ADMINISTRATOR . '/controller.php';
// Load controller
$controllerPath = WF_ADMINISTRATOR . '/controller/' . $view . '.php';
if (file_exists($controllerPath)) {
require_once $controllerPath;
$controllerClass = 'WFController' . ucfirst($view);
$controller = new $controllerClass(array('base_path' => WF_ADMINISTRATOR));
// load default controller
} else {
$controller = new WFController(array('base_path' => WF_ADMINISTRATOR));
}
// check Authorisations
switch ($view) {
case 'editor':
case 'help':
case 'popup':
break;
default:
$app = JFactory::getApplication();
if ($app->isAdmin() === false) {
$app->redirect('index.php', WFText::_('ALERTNOTAUTH'), 'error');
}
if ($view == 'cpanel') {
$view = 'manage';
}
开发者ID:acculitx,项目名称:fleetmatrixsite,代码行数:31,代码来源:jce.php
示例2: jimport
// get task
$task = JRequest::getCmd('task');
// import library dependencies
jimport('joomla.application.component.helper');
jimport('joomla.application.component.controller');
// Require the base controller
require_once dirname(__FILE__) . DS . 'controller.php';
// Load controller
$controllerPath = dirname(__FILE__) . DS . 'controller' . DS . $view . '.php';
if (file_exists($controllerPath)) {
require_once $controllerPath;
$controllerClass = 'WFController' . ucfirst($view);
$controller = new $controllerClass(array('base_path' => dirname(__FILE__)));
// load default controller
} else {
$controller = new WFController(array('base_path' => dirname(__FILE__)));
}
// check Authorisations
switch ($view) {
case 'editor':
case 'help':
case 'popup':
break;
case 'cpanel':
// Authorise
$controller->authorize('admin');
break;
default:
// Authorise
$controller->authorize($view);
break;
开发者ID:andreassetiawanhartanto,项目名称:PDKKI,代码行数:31,代码来源:jce.php
示例3: array
/**
* Custom Constructor
*/
function __construct($default = array())
{
parent::__construct();
$this->registerTask('disable', 'enable');
$language = JFactory::getLanguage();
$language->load('com_installer', JPATH_ADMINISTRATOR);
}
开发者ID:madcsaba,项目名称:li-de,代码行数:10,代码来源:installer.php
示例4: __construct
/**
* Custom Constructor
*/
public function __construct($default = array())
{
parent::__construct();
$this->registerTask('apply', 'save');
$this->registerTask('unpublish', 'publish');
$this->registerTask('enable', 'publish');
$this->registerTask('disable', 'publish');
$this->registerTask('orderup', 'order');
$this->registerTask('orderdown', 'order');
}
开发者ID:greyhat777,项目名称:vuslinterliga,代码行数:13,代码来源:profiles.php
示例5: array
/**
* Custom Constructor
*/
function __construct($default = array())
{
parent::__construct();
$this->registerTask('apply', 'save');
}
开发者ID:acculitx,项目名称:fleetmatrixsite,代码行数:8,代码来源:preferences.php
示例6: array
function __construct($config = array())
{
parent::__construct($config);
}
开发者ID:spikart,项目名称:spikart.com.ua,代码行数:4,代码来源:help.php
示例7: display
function display()
{
parent::display();
}
开发者ID:andreassetiawanhartanto,项目名称:PDKKI,代码行数:4,代码来源:profiles.php
示例8: array
/**
* Custom Constructor
*/
function __construct($default = array())
{
parent::__construct();
}
开发者ID:christopherstock,项目名称:Joomla3_Tini,代码行数:7,代码来源:updates.php
注:本文中的WFController类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论