Example #1
0
 public function __construct($aArgs)
 {
     parent::__construct($aArgs);
     if ($this->_oStepConfig->caches != '') {
         $aCaches = explode(',', $this->_oStepConfig->caches);
         $this->_aCaches = array_map('trim', $aCaches);
     }
 }
 public function __construct($aArgs)
 {
     parent::__construct($aArgs);
     if ($this->_oStepConfig->stores != '') {
         $aStoreCodes = array_map('trim', explode(',', $this->_oStepConfig->stores));
         $this->_aStoreIds = Mage::getModel('core/store')->getCollection()->addFieldToFilter('code', ['in' => $aStoreCodes])->getAllIds();
     }
 }
Example #3
0
 public function __construct($aArgs)
 {
     parent::__construct($aArgs);
     $this->_vFileType = (string) $this->_oStepConfig->fileType;
     $this->_vConfigSet = (string) $this->_oStepConfig->configSet;
 }
Example #4
0
 public function __construct($aArgs)
 {
     parent::__construct($aArgs);
     $this->_vJsonKey = (string) $this->_oStepConfig->jsonKey;
 }