Esempio n. 1
0
 /**
  * Perform operations after collection load
  *
  * @return $this
  */
 protected function _afterLoad()
 {
     $entityMetadata = $this->metadataPool->getMetadata(BlockInterface::class);
     $this->performAfterLoad('cms_block_store', $entityMetadata->getLinkField());
     return parent::_afterLoad();
 }
Esempio n. 2
0
 /**
  * Perform operations after collection load
  *
  * @return $this
  */
 protected function _afterLoad()
 {
     $this->performAfterLoad('cms_page_store', 'page_id');
     $this->_previewFlag = false;
     return parent::_afterLoad();
 }
Esempio n. 3
0
 /**
  * Perform operations after collection load
  *
  * @return $this
  */
 protected function _afterLoad()
 {
     $this->performAfterLoad('cms_block_store', 'block_id');
     return parent::_afterLoad();
 }
Esempio n. 4
0
 /**
  * Perform operations after collection load
  *
  * @return $this
  */
 protected function _afterLoad()
 {
     $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
     $this->performAfterLoad('cms_page_store', $entityMetadata->getLinkField());
     $this->_previewFlag = false;
     return parent::_afterLoad();
 }