Файловый менеджер - Редактировать - /home/digilove/public_html/libraries/fof30/Form/Header/AccessLevel.php
Назад
<?php /** * @package FOF * @copyright Copyright (c)2010-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later */ namespace FOF30\Form\Header; defined('_JEXEC') or die; /** * Access level field header * * @deprecated 3.1 Support for XML forms will be removed in FOF 4 */ class AccessLevel extends Selectable { /** * Method to get the list of access levels * * @return array A list of access levels. * * @since 2.0 */ protected function getOptions() { $db = $this->form->getContainer()->platform->getDbo(); $query = $db->getQuery(true); $query->select('a.id AS value, a.title AS text'); $query->from('#__viewlevels AS a'); $query->group('a.id, a.title, a.ordering'); $query->order('a.ordering ASC'); $query->order($query->qn('title') . ' ASC'); // Get the options. $db->setQuery($query); $options = $db->loadObjectList(); return $options; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0.72 |
proxy
|
phpinfo
|
Настройка