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


PHP oxBase::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     //T2008-02-22
     //lets try to differentiate cache keys for oxI18n and oxBase
     //in order not to load cached structure for the instances of oxbase classe called on same table
     if ($this->_sCacheKey) {
         $this->_sCacheKey .= "_i18n";
     }
 }
开发者ID:Crease29,项目名称:oxideshop_ce,代码行数:13,代码来源:I18n.php

示例2: __construct

 /**
  * Class constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('paymill_fastcheckout');
 }
开发者ID:SiWe0401,项目名称:paymill-oxid,代码行数:8,代码来源:paymill_fastcheckout.php

示例3: __construct

 /**
  * Initiates Obejct Structure
  * @param $aParams
  */
 public function __construct($aParams = null)
 {
     parent::__construct();
     $this->init('stores');
 }
开发者ID:spoilie,项目名称:OXID_EShop_ShopLocator,代码行数:9,代码来源:shoplocator.php

示例4: __construct

 /**
  * Initialises the instance
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->init();
 }
开发者ID:mibexx,项目名称:oxid_yttutorials,代码行数:9,代码来源:oxfile.php

示例5: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxnewssubscribed');
 }
开发者ID:JulianaSchuster,项目名称:oxid-frontend,代码行数:8,代码来源:oxnewssubscribed.php

示例6: __construct

 /**
  * Class constructor, initiates class constructor (parent::oxbase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxorderarticles');
 }
开发者ID:Alpha-Sys,项目名称:oxideshop_ce,代码行数:8,代码来源:OrderArticle.php

示例7: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxobject2group');
     $this->oxobject2group__oxshopid = new oxField($this->getConfig()->getShopId(), oxField::T_RAW);
 }
开发者ID:ioanok,项目名称:symfoxid,代码行数:9,代码来源:oxobject2group.php

示例8: __construct

 /**
  * Class constructor
  *
  * @return null
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxaddress');
 }
开发者ID:JulianaSchuster,项目名称:oxid-frontend,代码行数:10,代码来源:oxaddress.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_initModuleManager();
 }
开发者ID:OXIDprojects,项目名称:debugax,代码行数:5,代码来源:modulemanager.php

示例10: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()), loads
  * base shop objects.
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxpricealarm');
 }
开发者ID:mibexx,项目名称:oxid_yttutorials,代码行数:9,代码来源:oxpricealarm.php

示例11: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     $this->setMallUsersStatus($this->getConfig()->getConfigParam('blMallUsers'));
     parent::__construct();
     $this->init('oxuser');
 }
开发者ID:Alpha-Sys,项目名称:oxideshop_ce,代码行数:9,代码来源:User.php

示例12: __construct

 /**
  * Class constructor, initiates paren constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxstatistics');
 }
开发者ID:ioanok,项目名称:symfoxid,代码行数:8,代码来源:oxstatistic.php

示例13: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxorder');
     // set usage of separate orders numbering for different shops
     $this->setSeparateNumbering($this->getConfig()->getConfigParam('blSeparateNumbering'));
 }
开发者ID:Alpha-Sys,项目名称:oxideshop_ce,代码行数:10,代码来源:Order.php

示例14: __construct

 /**
  * Class constructor. Sets payment key for encoding sensitive data and
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxuserpayments');
     $this->_sPaymentKey = oxRegistry::getUtils()->strRot13($this->_sPaymentKey);
     $this->setStoreCreditCardInfo($this->getConfig()->getConfigParam('blStoreCreditCardInfo'));
 }
开发者ID:Alpha-Sys,项目名称:oxideshop_ce,代码行数:10,代码来源:UserPayment.php

示例15: __construct

 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init($this->_sCoreTbl);
 }
开发者ID:JulianaSchuster,项目名称:oxid-frontend,代码行数:8,代码来源:oxvoucherserie.php


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