本文整理匯總了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');
}