1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cms\Model\ResourceModel\Block;
- use Magento\Cms\Api\Data\BlockInterface;
- use \Magento\Cms\Model\ResourceModel\AbstractCollection;
- /**
- * CMS Block Collection
- */
- class Collection extends AbstractCollection
- {
- /**
- * @var string
- */
- protected $_idFieldName = 'block_id';
- /**
- * Event prefix
- *
- * @var string
- */
- protected $_eventPrefix = 'cms_block_collection';
- /**
- * Event object
- *
- * @var string
- */
- protected $_eventObject = 'block_collection';
- /**
- * 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();
- }
- /**
- * Define resource model
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Cms\Model\Block::class, \Magento\Cms\Model\ResourceModel\Block::class);
- $this->_map['fields']['store'] = 'store_table.store_id';
- $this->_map['fields']['block_id'] = 'main_table.block_id';
- }
- /**
- * Returns pairs block_id - title
- *
- * @return array
- */
- public function toOptionArray()
- {
- return $this->_toOptionArray('block_id', 'title');
- }
- /**
- * Add filter by store
- *
- * @param int|array|\Magento\Store\Model\Store $store
- * @param bool $withAdmin
- * @return $this
- */
- public function addStoreFilter($store, $withAdmin = true)
- {
- $this->performAddStoreFilter($store, $withAdmin);
- return $this;
- }
- /**
- * Join store relation table if there is store filter
- *
- * @return void
- */
- protected function _renderFiltersBefore()
- {
- $entityMetadata = $this->metadataPool->getMetadata(BlockInterface::class);
- $this->joinStoreRelationTable('cms_block_store', $entityMetadata->getLinkField());
- }
- }
|