Пример #1
0
 /**
  * Initialize objects required to render config form
  *
  * @return $this
  */
 protected function _initObjects()
 {
     $this->_configDataObject = $this->_configFactory->create(['data' => ['section' => $this->getSectionCode(), 'website' => $this->getWebsiteCode(), 'store' => $this->getStoreCode()]]);
     $this->_configData = $this->_configDataObject->load();
     $this->_fieldsetRenderer = $this->_fieldsetFactory->create();
     $this->_fieldRenderer = $this->_fieldFactory->create();
     return $this;
 }