* @copyright PrestaShop * @license http://www.opensource.org/licenses/osl-3.0.php Open-source licence 3.0 * @version 1.3 * */ include_once(PS_ADMIN_DIR.'/../classes/AdminTab.php'); class AdminShipping extends AdminTab { private $_fieldsHandling; public function __construct() { $this->table = 'delivery'; $currency = new Currency(Configuration::get('PS_CURRENCY_DEFAULT')); $this->_fieldsHandling = array( 'PS_SHIPPING_HANDLING' => array('title' => $this->l('Handling charges'), 'suffix' => $currency, 'validation' => 'isPrice', 'cast' => 'floatval'), 'PS_SHIPPING_FREE_PRICE' => array('title' => $this->l('Free shipping starts at'), 'suffix' => $currency, 'validation' => 'isPrice', 'cast' => 'floatval'), 'PS_SHIPPING_FREE_WEIGHT' => array('title' => $this->l('Free shipping starts at'), 'suffix' => Configuration::get('PS_WEIGHT_UNIT'), 'validation' => 'isUnsignedFloat', 'cast' => 'floatval'), 'PS_SHIPPING_METHOD' => array('title' => $this->l('Billing'), 'validation' => 'isBool', 'cast' => 'intval')); parent::__construct(); } public function postProcess() { global $currentIndex; /* Handling settings */ if (isset($_POST['submitHandling'.$this->table])) { if ($this->tabAccess['edit'] === '1') { /* Check required fields */ foreach ($this->_fieldsHandling AS $field => $values) if (($value = Tools::getValue($field)) == false AND (string)$value != '0') $this->_errors[] = Tools::displayError('field').' '.$values['title'].' '.Tools::displayError('is required'); /* Check field validity */ foreach ($this->_fieldsHandling AS $field => $values) if (Tools::getValue($field)) { $function = $values['validation']; if (!Validate::$function(Tools::getValue($field))) $this->_errors[] = Tools::displayError('field').' '.$values['title'].' '.Tools::displayError('is invalid'); } /* Update configuration values */ if (!sizeof($this->_errors)) { foreach ($this->_fieldsHandling AS $field => $values) { $function = $values['cast']; Configuration::updateValue($field, call_user_func($function, Tools::getValue($field))); } Tools::redirectAdmin($currentIndex.'&conf=6'.'&token='.$this->token); } } else $this->_errors[] = Tools::displayError('You do not have permission to edit anything here.'); } /* Shipping fees */ elseif (isset($_POST['submitFees'.$this->table])) { if ($this->tabAccess['edit'] === '1') { if (($id_carrier = intval(Tools::getValue('id_carrier'))) AND $id_carrier == ($id_carrier2 = intval(Tools::getValue('id_carrier2')))) { $carrier = new Carrier($id_carrier); if (Validate::isLoadedObject($carrier)) { /* Get configuration values */ $shipping_method = intval(Configuration::get('PS_SHIPPING_METHOD')); $rangeTable = $shipping_method ? 'range_weight' : 'range_price'; $carrier->deleteDeliveryPrice($rangeTable); /* Build prices list */ $priceList = ''; foreach ($_POST AS $key => $value) if (strstr($key, 'fees_')) { $tmpArray = explode('_', $key); $priceList .= '('.($shipping_method == 0 ? intval($tmpArray[2]) : 'NULL').', '.($shipping_method == 1 ? intval($tmpArray[2]) : 'NULL').', '.$carrier->id.', '.intval($tmpArray[1]).', '.number_format(abs($value), 2, '.', '').'),'; unset($tmpArray); } $priceList = rtrim($priceList, ','); /* Update delivery prices */ $carrier->addDeliveryPrice($priceList); Tools::redirectAdmin($currentIndex.'&conf=6'.'&token='.$this->token); } else $this->_errors[] = Tools::displayError('an error occurred while updating fees (cannot load carrier object)'); } elseif (isset($id_carrier2)) { $_POST['id_carrier'] = $id_carrier2; } else $this->_errors[] = Tools::displayError('an error occurred while updating fees (cannot load carrier object)'); } else $this->_errors[] = Tools::displayError('You do not have permission to edit anything here.'); } } public function display() { $this->displayFormHandling(); $this->displayFormFees(); } public function displayFormHandling() { global $currentIndex; $confKeys = $this->_fieldsHandling; foreach ($confKeys AS $key => $confKey) $getConf[] = $key; $confValues = Configuration::getMultiple($getConf); unset($confKeys['PS_SHIPPING_METHOD']); echo '
'; } public function displayFormFees() { global $currentIndex; echo '