![]() 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-elasticsearch/Model/ResourceModel/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Elasticsearch\Model\ResourceModel; use Magento\CatalogSearch\Model\ResourceModel\EngineInterface; use Magento\Catalog\Model\Product\Visibility; use Magento\Framework\Indexer\ScopeResolver\IndexScopeResolver; /** * Search engine resource model */ class Engine implements EngineInterface { /** * Catalog product visibility * * @var Visibility */ protected $catalogProductVisibility; /** * @var IndexScopeResolver */ private $indexScopeResolver; /** * Construct * * @param Visibility $catalogProductVisibility * @param IndexScopeResolver $indexScopeResolver */ public function __construct( Visibility $catalogProductVisibility, IndexScopeResolver $indexScopeResolver ) { $this->catalogProductVisibility = $catalogProductVisibility; $this->indexScopeResolver = $indexScopeResolver; } /** * Retrieve allowed visibility values for current engine * * @return int[] */ public function getAllowedVisibility() { return $this->catalogProductVisibility->getVisibleInSiteIds(); } /** * Define if current search engine supports advanced index * * @return bool */ public function allowAdvancedIndex() { return false; } /** * @inheritdoc */ public function processAttributeValue($attribute, $value) { return $value; } /** * Prepare index array as a string glued by separator * * Support 2 level array gluing * * @param array $index * @param string $separator * @return array * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function prepareEntityIndex($index, $separator = ' ') { return $index; } /** * @inheritdoc */ public function isAvailable() { return true; } }