Пример #1
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()), loads
  * base shop objects.
  */
 public function __construct()
 {
     $oConfig = $this->getConfig();
     $this->setWrappingVat($oConfig->getConfigParam('dDefaultVAT'));
     $this->setWrappingVatOnTop($oConfig->getConfigParam('blWrappingVatOnTop'));
     parent::__construct();
     $this->init('oxwrapping');
 }
Пример #2
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxdiscount');
 }
Пример #3
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxdelivery');
     $this->setDelVatOnTop($this->getConfig()->getConfigParam('blDeliveryVatOnTop'));
 }
Пример #4
0
 /**
  * Class constructor, initiates parent constructor (parent::oxI18n()).
  */
 public function __construct()
 {
     $this->setPaymentVatOnTop($this->getConfig()->getConfigParam('blPaymentVatOnTop'));
     parent::__construct();
     $this->init('oxpayments');
 }
Пример #5
0
 /**
  * Initializes instance
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->_sCacheKey = "simplevariants";
     $this->init('oxarticles');
 }
Пример #6
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxshops');
     if ($iMax = $this->getConfig()->getConfigParam('iMaxShopId')) {
         $this->setMaxShopId($iMax);
     }
 }
Пример #7
0
 /**
  * Calls parent constructor and initializes selection list
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxselectlist');
 }
Пример #8
0
 /**
  * Class constructor, initiates parent constructor (parent::oxI18n()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init("oxstates");
 }
Пример #9
0
 /**
  * Class constructor, initiates parent constructor (parent::oxI18n()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxcategories');
 }
Пример #10
0
 /**
  * Class constructor, initiates parent constructor (parent::oxI18n()).
  */
 public function __construct()
 {
     $this->setShowArticleCnt($this->getConfig()->getConfigParam('bl_perfShowActionCatArticleCnt'));
     parent::__construct();
     $this->init('oxvendor');
 }
Пример #11
0
 /**
  * Class constructor, initiates parent constructor (parent::oxI18n()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxmediaurls');
 }
Пример #12
0
 /**
  * Class constructor, sets callback so that Shopowner is able to
  * add any information to the article.
  *
  * @param string $sObjectsInListName optional and having no effect
  *
  * @return null
  */
 public function __construct($sObjectsInListName = 'oxselectlist')
 {
     parent::__construct();
     $this->init('oxselectlist');
 }
Пример #13
0
 /**
  * Constructor, sets shop ID for article (oxconfig::getShopId()),
  * initiates parent constructor (parent::oxI18n()).
  *
  * @param array $aParams The array of names and values of oxArticle instance properties to be set on object instantiation
  */
 public function __construct($aParams = null)
 {
     if ($aParams && is_array($aParams)) {
         foreach ($aParams as $sParam => $mValue) {
             $this->{$sParam} = $mValue;
         }
     }
     parent::__construct();
     $this->init('oxarticles');
 }
Пример #14
0
 /**
  * Class constructor, initiates parent constructor (parent::oxI18n()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxcontents');
 }
Пример #15
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxgroups');
 }
Пример #16
0
 /**
  * Instantiates oxTagSet object
  */
 public function __construct()
 {
     parent::__construct();
     $this->_oTagSet = oxNew('oxTagSet');
 }
Пример #17
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxattribute');
 }
Пример #18
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('oxdeliveryset');
 }
Пример #19
0
 /**
  * Class constructor, initiates parent constructor (parent::oxBase()).
  */
 public function __construct()
 {
     parent::__construct();
     $this->init($this->_sCoreTbl);
 }
Пример #20
0
 /**
  * Class constructor
  *
  * @return null
  */
 public function __construct()
 {
     parent::__construct();
     $this->init('mib_test');
 }