/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/View/Element/UiComponent/ContextInterface.php
167 строк
3 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. */ declare(strict_types=1); namespace Magento\Framework\View\Element\UiComponent; use Magento\Framework\View\Element\UiComponentInterface; use Magento\Framework\View\Element\UiComponent\ContentType\ContentTypeInterface; use Magento\Framework\View\Element\UiComponent\DataProvider\DataProviderInterface; use Magento\Framework\View\LayoutInterface as PageLayoutInterface; use Magento\Framework\View\Element\UiComponentFactory; /** * Interface ContextInterface * * @api */ interface ContextInterface { /** * Filter variable name */ const FILTER_VAR = 'filters'; /** * Add components definition * * @param string $name * @param array $config * @return void */ public function addComponentDefinition($name, array $config); /** * Get components definitions * * @return array */ public function getComponentsDefinitions(); /** * Getting root component name * * @return string */ public function getNamespace(); /** * Getting accept type * * @return string */ public function getAcceptType(); /** * Set data provider * * @param DataProviderInterface $dataProvider * @return void */ public function setDataProvider(DataProviderInterface $dataProvider); /** * Get data provider * * @return DataProviderInterface */ public function getDataProvider(); /** * Get Data Source array * * @param UiComponentInterface $component * @return array */ public function getDataSourceData(UiComponentInterface $component); /** * Getting all request data * * @return mixed */ public function getRequestParams(); /** * Getting data according to the key * * @param string $key * @param mixed|null $defaultValue * @return mixed */ public function getRequestParam($key, $defaultValue = null); /** * Get filters params * * @return array */ public function getFiltersParams(); /** * Get filter params according to the key * * @param string $key * @param null|string $defaultValue * @return mixed|null */ public function getFilterParam($key, $defaultValue = null); /** * Get root layout * * @return PageLayoutInterface */ public function getPageLayout(); /** * Add button in the actions toolbar * * @param array $buttons * @param UiComponentInterface $component * @return void */ public function addButtons(array $buttons, UiComponentInterface $component); /** * Add html block in the actions toolbar * * @param array $htmlBlocks * @param UiComponentInterface $component * @return void */ public function addHtmlBlocks(array $htmlBlocks, UiComponentInterface $component); /** * Get render engine * * @return ContentTypeInterface */ public function getRenderEngine(); /** * Generate url by route and parameters * * @param string $route * @param array $params * @return string */ public function getUrl($route = '', $params = []); /** * Get component processor * * @return Processor */ public function getProcessor(); /** * Get Ui Component Factory * * @return UiComponentFactory */ public function getUiComponentFactory(); }