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


PHP F0FController::__construct方法代码示例

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

示例2: __construct

 public function __construct($config)
 {
     parent::__construct($config);
     $this->registerTask('apply', 'save');
     $this->registerTask('saveNew', 'save');
     $this->registerTask('populatedata', 'save');
 }
开发者ID:davetheapple,项目名称:oakencraft,代码行数:7,代码来源:configurations.php

示例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(); */
 }
开发者ID:davetheapple,项目名称:oakencraft,代码行数:8,代码来源:shippings.php

示例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);
 }
开发者ID:jonatasmm,项目名称:akeebasubs,代码行数:8,代码来源:userinfos.php

示例5: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
     if ($this->input->getBool('caching', true)) {
         $this->cacheableTasks = array('browse');
     } else {
         $this->cacheableTasks = array();
     }
 }
开发者ID:jonatasmm,项目名称:akeebasubs,代码行数:9,代码来源:levels.php

示例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();
 }
开发者ID:ZoiaoDePeixe,项目名称:akeebasubs,代码行数:9,代码来源:reports.php

示例7: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->cacheableTasks = array();
 }
开发者ID:jonatasmm,项目名称:akeebasubs,代码行数:5,代码来源:cron.php

示例8: array

 function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerTask('apply', 'save');
 }
开发者ID:davetheapple,项目名称:oakencraft,代码行数:5,代码来源:promotioncontroller.php

示例9: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->modelName = 'fixperms';
 }
开发者ID:neoandrew1000,项目名称:crao_journal,代码行数:5,代码来源:fixperms.php

示例10: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerTask('getexpirations', 'browse');
     $this->registerTask('renewals', 'browse');
 }
开发者ID:jonatasmm,项目名称:akeebasubs,代码行数:6,代码来源:reports.php

示例11: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->akeebaACLCheck();
 }
开发者ID:jvhost,项目名称:A-Website,代码行数:5,代码来源:default.php

示例12: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
 }
开发者ID:neoandrew1000,项目名称:crao_journal,代码行数:4,代码来源:importexports.php

示例13: __construct

 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerTask('create', 'read');
 }
开发者ID:jonatasmm,项目名称:akeebasubs,代码行数:5,代码来源:apicoupons.php

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

示例15: array

 function __construct()
 {
     $config['csrfProtection'] = 0;
     parent::__construct($config);
     $this->cacheableTasks = array();
 }
开发者ID:davetheapple,项目名称:oakencraft,代码行数:6,代码来源:callback.php


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