| Current Path : /var/www/administrator/components/com_jcomments/models/ |
| Current File : /var/www/administrator/components/com_jcomments/models/blacklists.php |
<?php
/**
* JComments - Joomla Comment System
*
* @version 3.0
* @package JComments
* @author Sergey M. Litvinov (smart@joomlatune.ru)
* @copyright (C) 2006-2013 by Sergey M. Litvinov (http://www.joomlatune.ru)
* @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
class JCommentsModelBlacklists extends JCommentsModelList
{
public function __construct($config = array())
{
if (empty($config['filter_fields'])) {
$config['filter_fields'] = array(
'id', 'jb.id',
'ip', 'jb.ip',
'reason', 'jb.reason',
'notes', 'jb.notes',
'created', 'jb.created',
'name', 'u.name',
);
}
parent::__construct($config);
}
public function getTable($type = 'Blacklist', $prefix = 'JCommentsTable', $config = array())
{
return JTable::getInstance($type, $prefix, $config);
}
protected function getListQuery()
{
$query = $this->_db->getQuery(true);
$query->select("jb.*");
$query->from($this->_db->quoteName('#__jcomments_blacklist') . ' AS jb');
// Join over the users
$query->select('u.name');
$query->join('LEFT', $this->_db->quoteName('#__users') . ' AS u ON u.id = jb.created_by');
// Join over the users
$query->select('u2.name AS editor');
$query->join('LEFT', $this->_db->quoteName('#__users') . ' AS u2 ON u.id = jb.checked_out');
$search = $this->getState('filter.search');
if (!empty($search)) {
$search = $this->_db->Quote('%' . $this->_db->escape($search, true) . '%');
$query->where('(LOWER(jb.ip) LIKE ' . $search . ' OR LOWER(jb.reason) LIKE ' . $search . ' OR LOWER(jb.notes) LIKE ' . $search . ')');
}
$ordering = $this->state->get('list.ordering', 'jb.ip');
$direction = $this->state->get('list.direction', 'asc');
$query->order($this->_db->escape($ordering . ' ' . $direction));
return $query;
}
protected function populateState($ordering = null, $direction = null)
{
$app = JFactory::getApplication('administrator');
$search = $app->getUserStateFromRequest($this->context . '.filter.search', 'filter_search');
$this->setState('filter.search', $search);
parent::populateState('jb.ip', 'asc');
}
}