/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
libraries/src/Menu/AdministratorMenuItem.php
62 строки
1 KB
Hannes Papenberg
Joomla! 5.2.2 Release Candidate 1
18 ноя 2024, 12:07
Не верифицирован
18 ноя 2024, 12:07
816cd80
Код
Авторство
О чём код?
<?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\Menu; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Object representing an administrator menu item * * @since 4.0.0 */ class AdministratorMenuItem extends MenuItem { /** * The target attribute of the link * * @var string|null * @since 4.0.0 */ public $target; /** * The icon image of the menu item * * @var string|null * @since 4.0.0 */ public $icon; /** * The icon image of the link * * @var string|null * @since 4.0.0 */ public $iconImage; /** * The class of the menu item * * @var string * @since 5.2.2 */ public $class = ''; /** * The element type of the menu item * * @var string * @since 5.2.2 */ public $element = ''; }