* @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ include_once('../../config/config.inc.php'); include_once('../../init.php'); include_once('devspelivredor.php'); $context = Context::getContext(); $home_livredorr = new devspelivredor(); $livredors = array(); if (!Tools::isSubmit('secure_key') || Tools::getValue('secure_key') != $home_livredorr->secure_key || !Tools::getValue('action')) die(1); if (Tools::getValue('action') == 'updatelivredorsPosition' && Tools::getValue('livredors')) { $livredors = Tools::getValue('livredors'); foreach ($livredors as $position => $id_livredor) { $res = Db::getInstance()->execute(' UPDATE `'._DB_PREFIX_.'devspelivredor_item` SET `position` = '.(int)$position.' WHERE `id_livredor_item` = '.(int)$id_livredor ); } $home_livredorr->clearCache(); } if (Tools::getValue('action') == 'updatelivredorsThemePosition' && Tools::getValue('livredors')) { $livredors = Tools::getValue('livredors'); foreach ($livredors as $position => $id_livredor) { $res = Db::getInstance()->execute(' UPDATE `'._DB_PREFIX_.'devspelivredor_theme` SET `position` = '.(int)$position.' WHERE `id_livredor_theme` = '.(int)$id_livredor ); } $home_livredorr->clearCache(); }