PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
administrator
/
components
/
com_k2
/
controllers
<?php /** * @version 2.10.x * @package K2 * @author JoomlaWorks https://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2020 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; jimport('joomla.application.component.controller'); class K2ControllerUsers extends K2Controller { public function display($cachable = false, $urlparams = array()) { JRequest::setVar('view', 'users'); parent::display(); } public function edit() { $app = JFactory::getApplication(); $cid = JRequest::getVar('cid'); $app->redirect('index.php?option=com_k2&view=user&cid='.$cid[0]); } public function remove() { JRequest::checkToken() or jexit('Invalid Token'); $model = $this->getModel('users'); $model->remove(); } public function enable() { JRequest::checkToken() or jexit('Invalid Token'); $model = $this->getModel('users'); $model->enable(); } public function disable() { JRequest::checkToken() or jexit('Invalid Token'); $model = $this->getModel('users'); $model->disable(); } public function delete() { JRequest::checkToken() or jexit('Invalid Token'); $model = $this->getModel('users'); $model->delete(); } public function move() { $view = $this->getView('users', 'html'); $view->setLayout('move'); $model = $this->getModel('users'); $view->setModel($model); $view->move(); } public function saveMove() { JRequest::checkToken() or jexit('Invalid Token'); $model = $this->getModel('users'); $model->saveMove(); } public function cancelMove() { JRequest::checkToken() or jexit('Invalid Token'); $app = JFactory::getApplication(); $app->redirect('index.php?option=com_k2&view=users'); } public function import() { $model = $this->getModel('users'); $model->import(); } public function search() { $app = JFactory::getApplication(); $db = JFactory::getDbo(); $word = JRequest::getString('q', null); if (K2_JVERSION == '15') { $word = $db->Quote($db->getEscaped($word, true).'%', false); } else { $word = $db->Quote($db->escape($word, true).'%', false); } $query = "SELECT id,name FROM #__users WHERE name LIKE ".$word." OR username LIKE ".$word." OR email LIKE ".$word; $db->setQuery($query); $result = $db->loadObjectList(); echo json_encode($result); $app->close(); } }
[-] controller.php
[edit]
[-] item.php
[edit]
[-] categories.php
[edit]
[-] info.php
[edit]
[-] media.php
[edit]
[-] category.php
[edit]
[-] tags.php
[edit]
[-] usergroups.php
[edit]
[-] users.php
[edit]
[-] extrafieldsgroups.php
[edit]
[-] items.php
[edit]
[-] comments.php
[edit]
[-] extrafieldsgroup.php
[edit]
[-] tag.php
[edit]
[-] usergroup.php
[edit]
[-] extrafield.php
[edit]
[+]
..
[-] extrafields.php
[edit]
[-] user.php
[edit]
[-] settings.php
[edit]