當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。