* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision$ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class VATNumberTaxManager implements TaxManagerInterface { public static function isAvailableForThisAddress(Address $address) { return (!empty($address->vat_number) AND $address->id_country != Configuration::get('VATNUMBER_COUNTRY') AND Configuration::get('VATNUMBER_MANAGEMENT')); } public function getTaxCalculator() { // No tax return new TaxCalculator(array(0)); } }