PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
administrator
/
components
/
com_k2
/
models
<?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.model'); JTable::addIncludePath(JPATH_COMPONENT.'/tables'); class K2ModelUserGroup extends K2Model { public function getData() { $cid = JRequest::getVar('cid'); $row = JTable::getInstance('K2UserGroup', 'Table'); $row->load($cid); return $row; } public function save() { $app = JFactory::getApplication(); $row = JTable::getInstance('K2UserGroup', 'Table'); if (!$row->bind(JRequest::get('post'))) { $app->enqueueMessage($row->getError(), 'error'); $app->redirect('index.php?option=com_k2&view=usergroups'); } if (!$row->check()) { $app->enqueueMessage($row->getError(), 'error'); $app->redirect('index.php?option=com_k2&view=usergroup&cid='.$row->id); } if (!$row->store()) { $app->enqueueMessage($row->getError(), 'error'); $app->redirect('index.php?option=com_k2&view=usergroups'); } $cache = JFactory::getCache('com_k2'); $cache->clean(); switch (JRequest::getCmd('task')) { case 'apply': $msg = JText::_('K2_CHANGES_TO_USER_GROUP_SAVED'); $link = 'index.php?option=com_k2&view=usergroup&cid='.$row->id; break; case 'saveAndNew': $msg = JText::_('K2_USER_GROUP_SAVED'); $link = 'index.php?option=com_k2&view=usergroup'; break; case 'save': default: $msg = JText::_('K2_USER_GROUP_SAVED'); $link = 'index.php?option=com_k2&view=usergroups'; break; } $app->enqueueMessage($msg); $app->redirect($link); } }
[-] item.php
[edit]
[-] categories.php
[edit]
[-] category.php
[edit]
[-] tags.php
[edit]
[-] usergroups.php
[edit]
[-] item.xml
[edit]
[-] users.php
[edit]
[-] items.php
[edit]
[-] comments.php
[edit]
[-] tag.php
[edit]
[-] usergroup.xml
[edit]
[-] usergroup.php
[edit]
[-] extrafield.php
[edit]
[+]
..
[-] model.php
[edit]
[-] extrafields.php
[edit]
[-] user.php
[edit]
[-] settings.php
[edit]
[-] category.xml
[edit]