/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
libraries/src/Event/Table/AfterDeleteEvent.php
43 строки
1 KB
Harald Leithner
[5.0] b/c plugin for deprecation (#40664)
04 июл 2023, 14:36
Не верифицирован
04 июл 2023, 14:36
eda2c2c
Код
Авторство
О чём код?
<?php /** * Joomla! Content Management System * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Event\Table; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Event class for \Joomla\CMS\Table\Table onAfterDelete event * * @since 4.0.0 */ class AfterDeleteEvent extends AbstractEvent { /** * Constructor. * * Mandatory arguments: * subject \Joomla\CMS\Table\TableInterface The table we are operating on * pk The optional primary key value we deleted. * * @param string $name The event name. * @param array $arguments The event arguments. * * @throws \BadMethodCallException */ public function __construct($name, array $arguments = []) { if (!\array_key_exists('pk', $arguments)) { throw new \BadMethodCallException("Argument 'pk' is required for event $name"); } parent::__construct($name, $arguments); } }