collection = $collectionFactory->create(); $this->dataPersistor = $dataPersistor; parent::__construct($name, $primaryFieldName, $requestFieldName, $meta, $data); } /** * @return array */ public function getData() { if (isset($this->loadedData)) { return $this->loadedData; } $items = $this->collection->getItems(); /** @var Rule $rule */ foreach ($items as $rule) { $rule->load($rule->getId()); $this->loadedData[$rule->getId()] = $rule->getData(); } $data = $this->dataPersistor->get('catalog_rule'); if (!empty($data)) { $rule = $this->collection->getNewEmptyItem(); $rule->setData($data); $this->loadedData[$rule->getId()] = $rule->getData(); $this->dataPersistor->clear('catalog_rule'); } return $this->loadedData; } }