本文整理汇总了PHP中acymailingController::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP acymailingController::__construct方法的具体用法?PHP acymailingController::__construct怎么用?PHP acymailingController::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类acymailingController
的用法示例。
在下文中一共展示了acymailingController::__construct方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
function __construct($config = array())
{
parent::__construct($config);
$this->registerDefaultTask('subscribe');
$this->registerTask('optout', 'unsub');
$this->registerTask('out', 'unsub');
}
示例2: array
function __construct($config = array())
{
parent::__construct($config);
JHTML::_('behavior.tooltip');
JRequest::setVar('tmpl', 'component');
$this->registerDefaultTask('tag');
}
示例3: array
function __construct($config = array())
{
parent::__construct($config);
JRequest::setVar('tmpl','component');
$this->registerDefaultTask('click');
}
示例4: array
function __construct($config = array())
{
parent::__construct($config);
JHTML::_('behavior.tooltip');
JRequest::setVar('tmpl', 'component');
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.path');
$this->registerDefaultTask('browse');
}
示例5: array
function __construct($config = array())
{
parent::__construct($config);
$this->registerDefaultTask('toggle');
$this->allowedTablesColumn['list'] = array('published' => 'listid', 'visible' => 'listid');
$this->allowedTablesColumn['subscriber'] = array('confirmed' => 'subid', 'html' => 'subid', 'enabled' => 'subid');
$this->allowedTablesColumn['template'] = array('published' => 'tempid', 'premium' => 'tempid');
$this->allowedTablesColumn['mail'] = array('published' => 'mailid', 'visible' => 'mailid');
$this->allowedTablesColumn['listsub'] = array('status' => 'listid,subid');
$this->allowedTablesColumn['plugins'] = array('published' => 'id');
$this->allowedTablesColumn['followup'] = array('add' => 'mailid', 'addall' => 'mailid', 'update' => 'mailid');
$this->allowedTablesColumn['rules'] = array('published' => 'ruleid');
$this->allowedTablesColumn['filter'] = array('published' => 'filid');
$this->allowedTablesColumn['fields'] = array('published' => 'fieldid', 'required' => 'fieldid', 'frontcomp' => 'fieldid', 'backend' => 'fieldid', 'listing' => 'fieldid', 'frontlisting' => 'fieldid', 'frontjoomlaregistration' => 'fieldid', 'frontjoomlaprofile' => 'fieldid', 'joomlaprofile' => 'fieldid');
$this->allowedTablesColumn['config'] = array('addindex' => 'namekey', 'guessport' => 'port');
$this->deleteColumns['queue'] = array('subid', 'mailid');
$this->deleteColumns['filter'] = array('filid', 'filid');
$this->deleteColumns['rules'] = array('ruleid', 'ruleid');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
}
示例6: array
function __construct($config = array())
{
parent::__construct($config);
$this->registerTask('listing', 'display');
$this->registerDefaultTask('listing');
}
示例7: array
function __construct($config = array())
{
parent::__construct($config);
$this->registerDefaultTask('update');
}