/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
libraries/src/Extension/PluginInterface.php
39 строк
967 B
muhme
Joomla! 5.4.0 Alpha 1
25 май 2025, 14:02
Не верифицирован
25 май 2025, 14:02
45434cb
Код
Авторство
О чём код?
<?php /** * Joomla! Content Management System * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Extension; use Joomla\Event\DispatcherAwareInterface; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Access to plugin specific services. * * @since 4.0.0 * * @TODO Starting from 7.0 the class will no longer extend DispatcherAwareInterface */ interface PluginInterface extends DispatcherAwareInterface { /** * Registers its listeners. * * @return void * * @since 4.0.0 * * @deprecated 5.4.0 will be removed in 7.0 * Plugin should implement SubscriberInterface. * These plugins will be added to dispatcher in PluginHelper::import(). */ public function registerListeners(); }