12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cms\Model\Config\Source;
- use Magento\Cms\Model\ResourceModel\Page\CollectionFactory;
- /**
- * Class Page
- */
- class Page implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * @var array
- */
- protected $options;
- /**
- * @var CollectionFactory
- */
- protected $collectionFactory;
- /**
- * @param CollectionFactory $collectionFactory
- */
- public function __construct(
- CollectionFactory $collectionFactory
- ) {
- $this->collectionFactory = $collectionFactory;
- }
- /**
- * To option array
- *
- * @return array
- */
- public function toOptionArray()
- {
- if (!$this->options) {
- $this->options = $this->collectionFactory->create()->toOptionIdArray();
- }
- return $this->options;
- }
- }
|