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