Your IP : 216.73.216.218


Current Path : /home/antonen/poznajlitwe.lt/administrator/components/com_foxcontact/models/
Upload File :
Current File : /home/antonen/poznajlitwe.lt/administrator/components/com_foxcontact/models/enquiries.php

<?php defined('_JEXEC') or die(file_get_contents('index.html'));
/**
 * @package   Fox Contact for Joomla
 * @copyright Copyright (c) 2010 - 2015 Demis Palma. All rights reserved.
 * @license   Distributed under the terms of the GNU General Public License GNU/GPL v3 http://www.gnu.org/licenses/gpl-3.0.html
 * @see       Documentation: http://www.fox.ra.it/forum/2-documentation.html
 */

class FoxContactModelEnquiries extends JModelList
{
	
	public function __construct($config = array())
	{
		if (empty($config['filter_fields']))
		{
			$config['filter_fields'] = array('id', 'date');
		}
		
		parent::__construct($config);
	}
	
	
	protected function getListQuery()
	{
		$db = $this->getDbo();
		$query = $db->getQuery(true);
		$query->select($this->getState('list.select', 'id,' . 'form_id,' . $db->quoteName('date') . ',' . 'exported,' . 'ip,' . 'url,' . 'fields'));
		$query->from('#__foxcontact_enquiries');
		$search = $this->getState('filter.search');
		if (!empty($search))
		{
			$query->where('fields LIKE ' . $db->quote("%{$search}%"));
		}
		
		$exported = (int) $this->getState('filter.exported');
		$query->where('exported <= ' . $exported);
		$initial_date = $this->getState('filter.initial_date');
		if (!empty($initial_date))
		{
			$query->where($db->quoteName('date') . ' >= ' . $db->quote($initial_date));
		}
		
		$final_date = $this->getState('filter.final_date');
		if (!empty($final_date))
		{
			$query->where($db->quoteName('date') . ' <= ' . $db->quote($final_date));
		}
		
		$forms = $this->getState('filter.forms');
		if (!empty($forms))
		{
			$forms = implode(',', $db->quote($forms));
			$query->where('form_id IN (' . $forms . ')');
		}
		
		$order = $this->state->get('list.fullordering', 'id DESC');
		$query->order($db->escape($order));
		return $query;
	}
	
	
	public function getItems()
	{
		$items = $this->_getList($this->_getListQuery(), $this->getStart(), (int) $this->getState('list.limit'));
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);
		$query->select('id as value, title as text');
		$query->from('#__menu');
		$query->where('link LIKE ' . $db->quote('%option=com_foxcontact&view=foxcontact%'));
		$db->setQuery($query);
		$components = $db->loadAssocList('value');
		$query->clear();
		$query->select('-id as value, title as text');
		$query->from('#__modules');
		$query->where('module = ' . $db->quote('mod_foxcontact'));
		$db->setQuery($query);
		$modules = $db->loadAssocList('value');
		$forms = $components + $modules;
		foreach ($items as &$item)
		{
			$item->from_data = array('', '');
			$from_data_count = 0;
			$fields = json_decode($item->fields);
			foreach ($fields as $field)
			{
				switch ($field[0])
				{
					case 'sender':
						$item->from_data[$from_data_count++] = $field[2];
						break;
					case 'sender_name':
					case 'name':
						$item->from_data[0] = $field[2];
						break;
					case 'sender_email':
					case 'email':
						$item->from_data[1] = $field[2];
						break;
				}
			
			}
			
			$item->class = $item->exported ? ' exported' : '';
			if (isset($forms[$item->form_id]))
			{
				$item->form = $forms[$item->form_id]['text'];
			}
			else
			{
				$item->form = JText::_('JLIB_UNKNOWN');
			}
		
		}
		
		return $items;
	}

}