/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Indexer/Table/Strategy.php
73 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Indexer\Table; class Strategy implements StrategyInterface { /** * Application resource * * @var \Magento\Framework\App\ResourceConnection */ protected $resource; /** * Constructor * * @param \Magento\Framework\App\ResourceConnection $resource */ public function __construct( \Magento\Framework\App\ResourceConnection $resource ) { $this->resource = $resource; } /** * Use index table directly * * @var bool */ protected $useIdxTable = false; /** * {@inheritdoc} */ public function getUseIdxTable() { return $this->useIdxTable; } /** * {@inheritdoc} */ public function setUseIdxTable($value = false) { $this->useIdxTable = (bool) $value; return $this; } /** * {@inheritdoc} */ public function getTableName($tablePrefix) { return $this->resource->getTableName($this->prepareTableName($tablePrefix)); } /** * Prepare index table name * * @param string $tablePrefix * * @return string */ public function prepareTableName($tablePrefix) { return $this->getUseIdxTable() ? $tablePrefix . self::IDX_SUFFIX : $tablePrefix . self::TMP_SUFFIX; } }