当前位置: 首页>>代码示例>>PHP>>正文


PHP acymailingController::__construct方法代码示例

本文整理汇总了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');
 }
开发者ID:alesconti,项目名称:FF_2015,代码行数:7,代码来源:user.php

示例2: array

 function __construct($config = array())
 {
     parent::__construct($config);
     JHTML::_('behavior.tooltip');
     JRequest::setVar('tmpl', 'component');
     $this->registerDefaultTask('tag');
 }
开发者ID:bizanto,项目名称:Hooked,代码行数:7,代码来源:tag.php

示例3: array

	function __construct($config = array())
	{
		parent::__construct($config);

		JRequest::setVar('tmpl','component');
		$this->registerDefaultTask('click');

	}
开发者ID:utopszkij,项目名称:lmp,代码行数:8,代码来源:url.php

示例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');
 }
开发者ID:ForAEdesWeb,项目名称:AEW1,代码行数:10,代码来源:editor.php

示例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');
 }
开发者ID:ForAEdesWeb,项目名称:AEW4,代码行数:22,代码来源:toggle.php

示例6: array

 function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerTask('listing', 'display');
     $this->registerDefaultTask('listing');
 }
开发者ID:utopszkij,项目名称:lmp,代码行数:6,代码来源:dashboard.php

示例7: array

 function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerDefaultTask('update');
 }
开发者ID:Roma48,项目名称:abazherka,代码行数:5,代码来源:update.php


注:本文中的acymailingController::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。