本文整理汇总了PHP中F0FController::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP F0FController::__construct方法的具体用法?PHP F0FController::__construct怎么用?PHP F0FController::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类F0FController
的用法示例。
在下文中一共展示了F0FController::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->setThisModelName('AkeebasubsModelSubscribes');
$this->csrfProtection = false;
$this->cacheableTasks = array();
}
示例2: __construct
public function __construct($config)
{
parent::__construct($config);
$this->registerTask('apply', 'save');
$this->registerTask('saveNew', 'save');
$this->registerTask('populatedata', 'save');
}
示例3: __construct
public function __construct($config)
{
parent::__construct($config);
$this->registerTask('apply', 'save');
$this->registerTask('saveNew', 'save');
/* $task = JFactory::getApplication()->input->getString('task');
if($task=='view') $this->view(); */
}
示例4: __construct
public function __construct($config = array())
{
// Setup our configuration overrides
$configOverride = array('modelName' => 'AkeebasubsModelSubscribes');
$config = array_merge($config, $configOverride);
$this->cacheableTasks = array();
parent::__construct($config);
}
示例5: __construct
public function __construct($config = array())
{
parent::__construct($config);
if ($this->input->getBool('caching', true)) {
$this->cacheableTasks = array('browse');
} else {
$this->cacheableTasks = array();
}
}
示例6: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->registerTask('getexpirations', 'browse');
$this->registerTask('renewals', 'browse');
$this->registerTask('vies', 'invoices');
$this->registerTask('vatmoss', 'invoices');
$this->cacheableTasks = array();
}
示例7: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->cacheableTasks = array();
}
示例8: array
function __construct($config = array())
{
parent::__construct($config);
$this->registerTask('apply', 'save');
}
示例9: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->modelName = 'fixperms';
}
示例10: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->registerTask('getexpirations', 'browse');
$this->registerTask('renewals', 'browse');
}
示例11: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->akeebaACLCheck();
}
示例12: __construct
public function __construct($config = array())
{
parent::__construct($config);
}
示例13: __construct
public function __construct($config = array())
{
parent::__construct($config);
$this->registerTask('create', 'read');
}
示例14:
/**
* constructor
*/
function __construct()
{
parent::__construct();
F0FModel::addIncludePath(JPATH_SITE . '/plugins/j2store/report_itemised/report_itemised/models');
F0FTable::addIncludePath(JPATH_SITE . '/plugins/j2store/report_itemised/report_itemised/tables');
}
示例15: array
function __construct()
{
$config['csrfProtection'] = 0;
parent::__construct($config);
$this->cacheableTasks = array();
}