Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
ancien-site-2019
/
site
/
administrator
/
components
/
com_users
/
controllers
:
users.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @version $Id: users.php 20228 2011-01-10 00:52:54Z eddieajau $ * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access. defined('_JEXEC') or die; jimport('joomla.application.component.controlleradmin'); /** * Users list controller class. * * @package Joomla.Administrator * @subpackage com_users * @since 1.6 */ class UsersControllerUsers extends JControllerAdmin { /** * @var string The prefix to use with controller messages. * @since 1.6 */ protected $text_prefix = 'COM_USERS_USERS'; /** * Constructor. * * @param array An optional associative array of configuration settings. * @see JController * @since 1.6 */ public function __construct($config = array()) { parent::__construct($config); $this->registerTask('block', 'changeBlock'); $this->registerTask('unblock', 'changeBlock'); } /** * Proxy for getModel. * * @since 1.6 */ public function getModel($name = 'User', $prefix = 'UsersModel', $config = array('ignore_request' => true)) { return parent::getModel($name, $prefix, $config); } /** * Method to remove a record. * * @since 1.6 */ public function changeBlock() { // Check for request forgeries. JRequest::checkToken() or jexit(JText::_('JINVALID_TOKEN')); // Initialise variables. $ids = JRequest::getVar('cid', array(), '', 'array'); $values = array('block' => 1, 'unblock' => 0); $task = $this->getTask(); $value = JArrayHelper::getValue($values, $task, 0, 'int'); if (empty($ids)) { JError::raiseWarning(500, JText::_('COM_USERS_USERS_NO_ITEM_SELECTED')); } else { // Get the model. $model = $this->getModel(); // Change the state of the records. if (!$model->block($ids, $value)) { JError::raiseWarning(500, $model->getError()); } else { if ($value == 1){ $this->setMessage(JText::plural('COM_USERS_N_USERS_BLOCKED', count($ids))); } else if ($value == 0){ $this->setMessage(JText::plural('COM_USERS_N_USERS_UNBLOCKED', count($ids))); } } } $this->setRedirect('index.php?option=com_users&view=users'); } /** * Method to remove a record. * * @since 1.6 */ public function activate() { // Check for request forgeries. JRequest::checkToken() or jexit(JText::_('JINVALID_TOKEN')); // Initialise variables. $ids = JRequest::getVar('cid', array(), '', 'array'); if (empty($ids)) { JError::raiseWarning(500, JText::_('COM_USERS_USERS_NO_ITEM_SELECTED')); } else { // Get the model. $model = $this->getModel(); // Change the state of the records. if (!$model->activate($ids)) { JError::raiseWarning(500, $model->getError()); } else { $this->setMessage(JText::plural('COM_USERS_N_USERS_ACTIVATED', count($ids))); } } $this->setRedirect('index.php?option=com_users&view=users'); } /** * Method to run batch opterations. * * @return void * @since 1.6 */ function batch() { // Check for request forgeries. JRequest::checkToken() or jexit(JText::_('JINVALID_TOKEN')); // Initialise variables. $app = JFactory::getApplication(); $model = $this->getModel('User'); $vars = JRequest::getVar('batch', array(), 'post', 'array'); $cid = JRequest::getVar('cid', array(), 'post', 'array'); // Sanitize user ids. $cid = array_unique($cid); JArrayHelper::toInteger($cid); // Remove any values of zero. if (array_search(0, $cid, true)) { unset($cid[array_search(0, $cid, true)]); } // Attempt to run the batch operation. if (!$model->batch($vars, $cid)) { // Batch operation failed, go back to the users list and display a notice. $message = JText::sprintf('COM_USERS_USER_BATCH_FAILED', $model->getError()); $this->setRedirect('index.php?option=com_users&view=users', $message, 'error'); return false; } $message = JText::_('COM_USERS_USER_BATCH_SUCCESS'); $this->setRedirect('index.php?option=com_users&view=users', $message); return true; } }