![]() 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/magefan/module-blog/Ui/DataProvider/Post/Related/ |
<?php /** * Copyright © Magefan ([email protected]). All rights reserved. * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement). * * Glory to Ukraine! Glory to the heroes! */ namespace Magefan\Blog\Ui\DataProvider\Post\Related; use Magento\Ui\DataProvider\AbstractDataProvider; use Magefan\Blog\Model\ResourceModel\Post\Collection; use Magefan\Blog\Model\ResourceModel\Post\CollectionFactory; use Magento\Framework\App\RequestInterface; /** * Class PostDataProvider get post data */ class PostDataProvider extends AbstractDataProvider { /** * @var RequestInterface */ protected $request; /** * @var post */ private $post; /** * Construct * * @param string $name * @param string $primaryFieldName * @param string $requestFieldName * @param CollectionFactory $collectionFactory * @param RequestInterface $request * @param array $meta * @param array $data */ public function __construct( $name, $primaryFieldName, $requestFieldName, CollectionFactory $collectionFactory, RequestInterface $request, array $meta = [], array $data = [] ) { parent::__construct( $name, $primaryFieldName, $requestFieldName, $meta, $data ); $this->collection = $collectionFactory->create(); $this->request = $request; } /** * {@inheritdoc} */ public function getCollection() { /** @var Collection $collection */ $collection = parent::getCollection(); if (!$this->getPost()) { return $collection; } $collection->addFieldToFilter( $collection->getIdFieldName(), ['nin' => [$this->getPost()->getId()]] ); return $this->addCollectionFilters($collection); } /** * Retrieve post * * @return PostInterface|null */ protected function getPost() { if (null !== $this->post) { return $this->post; } if (!($id = $this->request->getParam('current_post_id'))) { return null; } return $this->post = $this->postRepository->getById($id); } }