120 lines
4.4 KiB
PHP
120 lines
4.4 KiB
PHP
<?php
|
|
/*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/osl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision: 6856 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class NotificationCore
|
|
{
|
|
public $types;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->types = array('order', 'message', 'customer');
|
|
}
|
|
|
|
/**
|
|
* getLastElements return all the notifications (new order, new customer registration, and new customer message)
|
|
* Get all the notifications
|
|
*
|
|
* @return array containing the notifications
|
|
*/
|
|
public function getLastElements()
|
|
{
|
|
$notifications = array();
|
|
$employee_infos = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
|
|
SELECT id_last_order, id_last_message, id_last_customer
|
|
FROM `'._DB_PREFIX_.'employee`
|
|
WHERE `id_employee` = '.(int)Context::getContext()->employee->id);
|
|
|
|
foreach ($this->types as $type)
|
|
$notifications[$type] = Notification::getLastElementsIdsByType($type, $employee_infos['id_last_'.$type]);
|
|
|
|
return $notifications;
|
|
}
|
|
|
|
/**
|
|
* getLastElementsIdsByType return all the element ids to show (order, customer registration, and customer message)
|
|
* Get all the element ids
|
|
*
|
|
* @param string $type contains the field name of the Employee table
|
|
* @param integer $id_last_element contains the id of the last seen element
|
|
* @return array containing the notifications
|
|
*/
|
|
public static function getLastElementsIdsByType($type, $id_last_element)
|
|
{
|
|
|
|
if ($type == 'order' || $type == 'message')
|
|
$sql = 'SELECT id_order, id_customer, '.(($type == 'order') ? 'total_paid_real' : 'message').'
|
|
FROM `'._DB_PREFIX_.(($type == 'order') ? pSQL($type).'s' : pSQL($type)).'`
|
|
WHERE `id_'.pSQL($type).'` > '.(int)$id_last_element.'
|
|
ORDER BY `id_'.pSQL($type).'` DESC LIMIT 5';
|
|
else
|
|
$sql = 'SELECT id_'.pSQL($type).'
|
|
FROM `'._DB_PREFIX_.pSQL($type).'`
|
|
WHERE `id_'.pSQL($type).'` > '.(int)$id_last_element.'
|
|
ORDER BY `id_'.pSQL($type).'` DESC LIMIT 5';
|
|
|
|
$json = array();
|
|
foreach (Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS($sql) as $key => $value)
|
|
{
|
|
if (isset($value['id_order']))
|
|
{
|
|
$order = new Order(intval($value['id_order']));
|
|
$currency = new Currency(intval($order->id_currency));
|
|
}
|
|
$customer = new Customer(intval($value['id_customer']));
|
|
$json[] = array(
|
|
'id_order' => ((isset($value['id_order'])) ? (int)$value['id_order'] : 0),
|
|
'id_customer' => ((isset($value['id_customer'])) ? (int)$value['id_customer'] : 0),
|
|
'total_paid_real' => ((isset($value['total_paid_real'])) ? Tools::displayPrice((float)$value['total_paid_real'], $currency, false) : 0),
|
|
'customer_name' => $customer->firstname.' '.$customer->lastname,
|
|
'message_customer' => ((isset($value['message'])) ? substr(strip_tags($value['message']), 0, 20) : '')
|
|
);
|
|
}
|
|
|
|
return $json;
|
|
}
|
|
|
|
/**
|
|
* updateEmployeeLastElement return 0 if the field doesn't exists in Employee table.
|
|
* Updates the last seen element by the employee
|
|
*
|
|
* @param string $type contains the field name of the Employee table
|
|
* @return boolean if type exists or not
|
|
*/
|
|
public function updateEmployeeLastElement($type)
|
|
{
|
|
if (in_array($type, $this->types))
|
|
// We update the last item viewed
|
|
return Db::getInstance()->Execute('
|
|
UPDATE `'._DB_PREFIX_.'employee`
|
|
SET `id_last_'.pSQL($type).'` = (SELECT MAX(`id_'.$type.'`)
|
|
FROM `'._DB_PREFIX_.(($type == 'order') ? pSQL($type).'s' : pSQL($type)).'`)
|
|
WHERE `id_employee` = '.(int)Context::getContext()->employee->id);
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
?>
|