/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
libraries/src/Table/Ucm.php
40 строк
1 KB
muhme
Joomla! 5.4.0 Alpha 3
19 июл 2025, 12:26
Не верифицирован
19 июл 2025, 12:26
03838ac
Код
Авторство
О чём код?
<?php /** * Joomla! Content Management System * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Table; use Joomla\Database\DatabaseInterface; use Joomla\Event\DispatcherInterface; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * UCM map table * * @since 3.1 * @deprecated 5.4.0 will be removed in 7.0 without replacement */ class Ucm extends Table { /** * Constructor * * @param DatabaseInterface $db Database connector object * @param ?DispatcherInterface $dispatcher Event dispatcher for this table * * @since 3.1 * @deprecated 5.4.0 will be removed in 7.0 without replacement */ public function __construct(DatabaseInterface $db, ?DispatcherInterface $dispatcher = null) { parent::__construct('#__ucm_base', 'ucm_id', $db, $dispatcher); } }