/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Module/ModuleListInterface.php
52 строки
1022 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * List of active application modules. * * Copyright 2014 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Module; /** * Interface \Magento\Framework\Module\ModuleListInterface * * @api */ interface ModuleListInterface { /** * Get list of all modules * * Returns an array where key is module name and value is an array with module meta-information * * @return array */ public function getAll(); /** * Get module declaration data * * Returns an array with meta-information about one module by specified name * * @param string $name * @return array|null */ public function getOne($name); /** * Enumerates the list of names of modules * * @return string[] */ public function getNames(); /** * Checks whether the specified module is present in the list * * @param string $name * @return bool */ public function has($name); }