| Server IP : 87.98.154.146 / Your IP : 216.73.216.101 Web Server : Apache System : Linux webm005.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : bsiadvisil ( 110003) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/bsiadvisil/www/administrator/components/com_nexevocontact/models/ |
Upload File : |
<?php defined("_JEXEC") or die('Restricted access');
/**
@Nexevo Responsive Conact Form
@author Nexevo Technologies <info@nexevo.in>
@link http://www.Nexevo.in
@copyright (C) 2010 - 2011 Nexevo-Extension
@license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
class NexevoContactModelEnquiries extends JModelList
{
public function __construct($config = array())
{
if (empty($config["filter_fields"]))
{
$config["filter_fields"] = array(
"id", "a.id",
"date", "a.date",
"exported", "a.exported"
);
}
parent::__construct($config);
}
protected function getListQuery()
{
$db = $this->getDbo();
$query = $db->getQuery(true);
$query->select(
$this->getState(
"list.select",
"a.id AS id," .
"a.form_id AS form_id," .
"a.date AS date," .
"a.exported AS exported," .
"a.ip AS ip," .
"a.url AS url," .
"a.fields fields"
)
);
$query->from($db->quoteName("#__nexevocontact_enquiries") . " AS a");
$search = $this->getState("filter.search");
if (!empty($search))
{
$query->where("a.fields LIKE " . $db->quote("%" . $db->escape($search, true) . "%"));
}
$exported = (int)$this->getState("filter.exported");
$query->where("a.exported <= " . $exported);
$initial_date = $this->getState("filter.initial_date");
if (!empty($initial_date))
{
$query->where("a.date >= " . $db->quote($initial_date));
}
$final_date = $this->getState("filter.final_date");
if (!empty($final_date))
{
$query->where("a.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", "a.date DESC");
$query->order($db->escape($order));
return $query;
}
public function getItems()
{
$query = $this->_getListQuery();
$items = $this->_getList($query, $this->getStart(), (int)$this->getState("list.limit"));
$db = JFactory::getDbo();
$query->clear();
$query->select("id as value, title as text");
$query->from("#__menu");
$query->where("link LIKE " . $db->quote("%option=com_nexevocontact&view=nexevocontact%"));
$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_nexevocontact"));
$db->setQuery($query);
$modules = $db->loadAssocList("value");
$forms = $components + $modules;
foreach ($items as &$item)
{
$item->sender_data = array();
$fields = json_decode($item->fields);
foreach ($fields as $field)
{
if ($field[0] == "sender")
{
$item->sender_data[] = $field[2];
}
}
$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;
}
}