bebeboutik/modules/soflexibilite/classes/SoFlexibiliteRangeWeight.php
Marion Muszynski ffbb3232b9 modif soflex
2016-05-09 17:43:57 +02:00

49 lines
1.9 KiB
PHP

<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from Common-Services Co., Ltd.
* Use, copy, modification or distribution of this source file without written
* license agreement from the SARL SMC is strictly forbidden.
* In order to obtain a license, please contact us: contact@common-services.com
* ...........................................................................
* INFORMATION SUR LA LICENCE D'UTILISATION
*
* L'utilisation de ce fichier source est soumise a une licence commerciale
* concedee par la societe Common-Services Co., Ltd.
* Toute utilisation, reproduction, modification ou distribution du present
* fichier source sans contrat de licence ecrit de la part de la Common-Services Co. Ltd. est
* expressement interdite.
* Pour obtenir une licence, veuillez contacter Common-Services Co., Ltd. a l'adresse: contact@common-services.com
* ...........................................................................
*
* @package soflexibilite
* @author Alexandre D.
* @copyright Copyright (c) 2011-2015 Common Services Co Ltd - 90/25 Sukhumvit 81 - 10260 Bangkok - Thailand
* @license Commercial license
* Support by mail : support.soflexibilite@common-services.com
*/
class SoFlexibiliteRangeWeight extends RangeWeight
{
/**
* Override add to create delivery value for selected zones without call to addDeliveryPrice
* @see classes/ObjectModelCore::add()
*
* @param bool $null_values
* @param bool $autodate
* @return bool Insertion result
*/
public function addWithoutCallToAddDeliveryPrice($autodate = true, $null_values = false)
{
if (!ObjectModel::add($autodate, $null_values) || !Validate::isLoadedObject($this)) {
return false;
}
if (defined('PS_INSTALLATION_IN_PROGRESS')) {
return true;
}
return true;
}
}