![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-cms/Model/ResourceModel/Block/ |
<?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()); } }