PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
administrator
/
components
/
com_users
/
controllers
<?php /** * @package Joomla.Administrator * @subpackage com_users * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * User view levels list controller class. * * @since 1.6 */ class UsersControllerLevels extends JControllerAdmin { /** * @var string The prefix to use with controller messages. * @since 1.6 */ protected $text_prefix = 'COM_USERS_LEVELS'; /** * Proxy for getModel. * * @param string $name The model name. Optional. * @param string $prefix The class prefix. Optional. * @param array $config Configuration array for model. Optional. * * @return object The model. * * @since 1.6 */ public function getModel($name = 'Level', $prefix = 'UsersModel', $config = array()) { return parent::getModel($name, $prefix, array('ignore_request' => true)); } }
[+]
..
[-] group.php
[edit]
[-] groups.php
[edit]
[-] index.html
[edit]
[-] level.php
[edit]
[-] levels.php
[edit]
[-] mail.php
[edit]
[-] note.php
[edit]
[-] notes.php
[edit]
[-] profile.json.php
[edit]
[-] user.php
[edit]
[-] users.php
[edit]
[-] .htaccess.disabled
[edit]