Według moich badań oto, co znalazłem:
Interpretator argumentów jest tworzony w lib\internal\Magento\Framework\App\ObjectManagerFactory.php
:
protected function createArgumentInterpreter(
\Magento\Framework\Stdlib\BooleanUtils $booleanUtils
) {
$constInterpreter = new \Magento\Framework\Data\Argument\Interpreter\Constant();
$result = new \Magento\Framework\Data\Argument\Interpreter\Composite(
[
'boolean' => new \Magento\Framework\Data\Argument\Interpreter\Boolean($booleanUtils),
'string' => new \Magento\Framework\Data\Argument\Interpreter\StringUtils($booleanUtils),
'number' => new \Magento\Framework\Data\Argument\Interpreter\Number(),
'null' => new \Magento\Framework\Data\Argument\Interpreter\NullType(),
'object' => new \Magento\Framework\Data\Argument\Interpreter\DataObject($booleanUtils),
'const' => $constInterpreter,
'init_parameter' => new \Magento\Framework\App\Arguments\ArgumentInterpreter($constInterpreter),
],
\Magento\Framework\ObjectManager\Config\Reader\Dom::TYPE_ATTRIBUTE
);
// Add interpreters that reference the composite
$result->addInterpreter('array', new \Magento\Framework\Data\Argument\Interpreter\ArrayType($result));
return $result;
}
W tym kodzie widać wyraźnie, że w zależności od atrybutu typu argumentu używane są różne interpretatory \Magento\Framework\ObjectManager\Config\Reader\Dom::TYPE_ATTRIBUTE
:
- boolean =>
\Magento\Framework\Data\Argument\Interpreter\Boolean
- ciąg =>
\Magento\Framework\Data\Argument\Interpreter\StringUtils
- liczba =>
\Magento\Framework\Data\Argument\Interpreter\Number
- null =>
\Magento\Framework\Data\Argument\Interpreter\NullType
- obiekt =>
\Magento\Framework\Data\Argument\Interpreter\DataObject
- const =>
\Magento\Framework\Data\Argument\Interpreter\Constant
- init_parameter =>
\Magento\Framework\App\Arguments\ArgumentInterpreter
(zwróć uwagę, że ten przyjmuje \Magento\Framework\Data\Argument\Interpreter\Constant
parametr jako a nie parametr konstruktora)
Ponadto w locie dodawany jest dodatkowy tłumacz, który obsługuje typy tablic:
- tablica =>
\Magento\Framework\Data\Argument\Interpreter\ArrayType
Uwaga: wygląda na to, że ten init_parameter
typ jest używany tylko app\code\Magento\Store\etc\di.xml
do inicjowania niektórych stałych:
<argument name="xFrameOpt" xsi:type="init_parameter">Magento\Framework\App\Response\XFrameOptPlugin::DEPLOYMENT_CONFIG_X_FRAME_OPT</argument>
...
<argument name="isCustomEntryPoint" xsi:type="init_parameter">Magento\Store\Model\Store::CUSTOM_ENTRY_POINT_PARAM</argument>
...
<argument name="runMode" xsi:type="init_parameter">Magento\Store\Model\StoreManager::PARAM_RUN_TYPE</argument>
<argument name="scopeCode" xsi:type="init_parameter">Magento\Store\Model\StoreManager::PARAM_RUN_CODE</argument>
static
zamiastconst
takiego argumentu? Nie mogę znaleźć typu, który działa dlastatic
pola w mojej klasie :-(