You've already forked joomla_test
first commit
This commit is contained in:
78
administrator/components/com_k2/models/usergroups.php
Normal file
78
administrator/components/com_k2/models/usergroups.php
Normal file
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/**
|
||||
* @version $Id: usergroups.php 1937 2013-03-07 15:19:16Z lefteris.kavadas $
|
||||
* @package K2
|
||||
* @author JoomlaWorks http://www.joomlaworks.net
|
||||
* @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
|
||||
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
|
||||
*/
|
||||
|
||||
// no direct access
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
jimport('joomla.application.component.model');
|
||||
|
||||
JTable::addIncludePath(JPATH_COMPONENT.DS.'tables');
|
||||
|
||||
class K2ModelUserGroups extends K2Model
|
||||
{
|
||||
|
||||
function getData()
|
||||
{
|
||||
|
||||
$mainframe = JFactory::getApplication();
|
||||
$option = JRequest::getCmd('option');
|
||||
$view = JRequest::getCmd('view');
|
||||
$db = JFactory::getDBO();
|
||||
$limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int');
|
||||
$limitstart = $mainframe->getUserStateFromRequest($option.$view.'.limitstart', 'limitstart', 0, 'int');
|
||||
$filter_order = $mainframe->getUserStateFromRequest($option.$view.'filter_order', 'filter_order', '', 'cmd');
|
||||
$filter_order_Dir = $mainframe->getUserStateFromRequest($option.$view.'filter_order_Dir', 'filter_order_Dir', '', 'word');
|
||||
|
||||
$query = "SELECT userGroup.*, (SELECT COUNT(DISTINCT userID) FROM #__k2_users WHERE `group`=userGroup.id) AS numOfUsers FROM #__k2_user_groups AS userGroup";
|
||||
|
||||
if (!$filter_order)
|
||||
{
|
||||
$filter_order = "name";
|
||||
}
|
||||
|
||||
$query .= " ORDER BY {$filter_order} {$filter_order_Dir}";
|
||||
|
||||
$db->setQuery($query, $limitstart, $limit);
|
||||
$rows = $db->loadObjectList();
|
||||
return $rows;
|
||||
}
|
||||
|
||||
function getTotal()
|
||||
{
|
||||
|
||||
$mainframe = JFactory::getApplication();
|
||||
$option = JRequest::getCmd('option');
|
||||
$view = JRequest::getCmd('view');
|
||||
$db = JFactory::getDBO();
|
||||
|
||||
$query = "SELECT COUNT(*) FROM #__k2_user_groups";
|
||||
|
||||
$db->setQuery($query);
|
||||
$total = $db->loadresult();
|
||||
return $total;
|
||||
}
|
||||
|
||||
function remove()
|
||||
{
|
||||
|
||||
$mainframe = JFactory::getApplication();
|
||||
$db = JFactory::getDBO();
|
||||
$cid = JRequest::getVar('cid');
|
||||
foreach ($cid as $id)
|
||||
{
|
||||
$row = JTable::getInstance('K2UserGroup', 'Table');
|
||||
$row->load($id);
|
||||
$row->delete($id);
|
||||
}
|
||||
$cache = JFactory::getCache('com_k2');
|
||||
$cache->clean();
|
||||
$mainframe->redirect('index.php?option=com_k2&view=usergroups', JText::_('K2_DELETE_COMPLETED'));
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user