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


PHP DataExtension::__construct方法代码示例

本文整理汇总了PHP中DataExtension::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP DataExtension::__construct方法的具体用法?PHP DataExtension::__construct怎么用?PHP DataExtension::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DataExtension的用法示例。


在下文中一共展示了DataExtension::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct()
 {
     $this->allowedStates = self::$allowed_states;
     $this->allowedCountries = self::$allowed_countries;
     $this->postcodeRegex = self::$postcode_regex;
     parent::__construct();
 }
开发者ID:8secs,项目名称:cocina,代码行数:7,代码来源:Addressable.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     // This may get called before the schema is created.
     if (!DB::getConn()->isSchemaUpdating()) {
         HtmlEditorConfig::get('cms')->setOption('viewtemplate', ViewTemplate::get()->map('Title')->toArray());
     }
 }
开发者ID:helpfulrobot,项目名称:satrun77-viewtemplate,代码行数:8,代码来源:ViewTemplatePageExtension.php

示例3: __construct

 /**
  * @param $allowed
  */
 public function __construct($allowed)
 {
     parent::__construct();
     if (!is_array($allowed)) {
         $allowed = func_get_args();
     }
     $this->allowed = $allowed;
 }
开发者ID:helpfulrobot,项目名称:heyday-silverstripe-abtesting,代码行数:11,代码来源:ABTestingExtension.php

示例4: __construct

 /**
  * @param Config_ForClass $config
  */
 public function __construct(Config_ForClass $config = null)
 {
     parent::__construct();
     $this->config = $config ?: Config::inst()->forClass(__CLASS__);
     if ($memLimit = $this->config->get('memory')) {
         increase_memory_limit_to($memLimit);
     }
 }
开发者ID:helpfulrobot,项目名称:heyday-silverstripe-optimisedimage,代码行数:11,代码来源:ResampleImage.php

示例5: array

 /**
  * @param Array|String $searchFields Comma-separated list (or array) of database column names
  *  that can be searched on. Used for generation of the database index defintions.
  */
 function __construct($searchFields = array())
 {
     if (is_array($searchFields)) {
         $this->searchFields = implode(',', $searchFields);
     } else {
         $this->searchFields = $searchFields;
     }
     parent::__construct();
 }
开发者ID:nomidi,项目名称:sapphire,代码行数:13,代码来源:FulltextSearchable.php

示例6: __construct

 /**
  * @param Array|String $searchFields Comma-separated list (or array) of database column names
  *  that can be searched on. Used for generation of the database index defintions.
  */
 public function __construct($searchFields = array())
 {
     if (is_array($searchFields)) {
         $this->searchFields = '"' . implode('","', $searchFields) . '"';
     } else {
         $this->searchFields = $searchFields;
     }
     parent::__construct();
 }
开发者ID:ivoba,项目名称:silverstripe-framework,代码行数:13,代码来源:FulltextSearchable.php

示例7: __construct

 public function __construct($tab = '', $useCMSFieldsAlways = false, $profileRelation = '')
 {
     parent::__construct();
     $this->tab = $tab;
     $this->useCMSFieldsAlways = $useCMSFieldsAlways;
     if ($profileRelation) {
         static::$connected_relations[] = $profileRelation;
         $this->hasSetRelationForHidingFromFieldLists = true;
     }
 }
开发者ID:spekulatius,项目名称:ss-social-feed,代码行数:10,代码来源:HasProfiles.php

示例8: __construct

 public function __construct()
 {
     $this->allowedStates = self::$allowed_states;
     $this->allowedCountries = self::$allowed_countries;
     if (!empty($customRegex = Config::inst()->get('Addressable', 'set_postcode_regex'))) {
         self::set_postcode_regex($customRegex);
     }
     $this->postcodeRegex = self::$postcode_regex;
     parent::__construct();
 }
开发者ID:alexoconner,项目名称:silverstripe-addressable,代码行数:10,代码来源:Addressable.php

示例9: __construct

 public function __construct($name = 'Title', $parentRel = null, $enforceParity = false)
 {
     parent::__construct();
     if (!empty($parentRel)) {
         $this->parentRel = $parentRel;
     }
     if (!empty($name)) {
         $this->name = $name;
     }
     $this->enforceParity = $enforceParity;
 }
开发者ID:helpfulrobot,项目名称:nightjar-ss-slug,代码行数:11,代码来源:Slug.php

示例10: __construct

 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
     $appId = Config::inst()->get('VkControllerExtension', 'app_id');
     $secret = Config::inst()->get('VkControllerExtension', 'api_secret');
     if (!$appId || !$secret) {
         return null;
     }
     if (session_status() !== PHP_SESSION_ACTIVE) {
         Session::start();
     }
 }
开发者ID:rchntrl,项目名称:silverstripe-vk-connect,代码行数:15,代码来源:VkControllerExtension.php

示例11: __construct

 /**
  * @param $destFolder The folder to save the cached site into.
  *   This needs to be set in framework/static-main.php as well through the {@link $cacheBaseDir} variable.
  * @param $fileExtension  The file extension to use, e.g 'html'.  
  *   If omitted, then each page will be placed in its own directory, 
  *   with the filename 'index.html'.  If you set the extension to PHP, then a simple PHP script will
  *   be generated that can do appropriate cache & redirect header negotation.
  */
 public function __construct($destFolder = 'cache', $fileExtension = null)
 {
     // Remove trailing slash from folder
     if (substr($destFolder, -1) == '/') {
         $destFolder = substr($destFolder, 0, -1);
     }
     $this->destFolder = $destFolder;
     if ($fileExtension) {
         $this->fileExtension = $fileExtension;
     }
     parent::__construct();
 }
开发者ID:spark-green,项目名称:silverstripe-staticpublishqueue,代码行数:20,代码来源:FilesystemPublisher.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     DataObject::set_validation_enabled(true);
 }
开发者ID:svandragt,项目名称:silverstripe-optimisticlocking,代码行数:5,代码来源:OptimisticLocking.php

示例13: __construct

 public function __construct(ContentService $service)
 {
     $this->service = $service;
     parent::__construct();
 }
开发者ID:helpfulrobot,项目名称:silverstripe-cdncontent,代码行数:5,代码来源:ImageCachedExtension.php

示例14: __construct

 public function __construct(ElasticaService $service)
 {
     $this->service = $service;
     parent::__construct();
 }
开发者ID:helpfulrobot,项目名称:weboftalent-elastica,代码行数:5,代码来源:Searchable.php

示例15:

	/**
	 * @param Array|String $searchFields Comma-separated list (or array) of database column names
	 *  that can be searched on. Used for generation of the database index defintions.
	 */
	function __construct($searchFields) {
		if(is_array($searchFields)) $this->searchFields = implode(',', $searchFields);
		else $this->searchFields = $searchFields;
		
		parent::__construct();
	}
开发者ID:redema,项目名称:sapphire,代码行数:10,代码来源:FulltextSearchable.php


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