0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
app
/
code
/
core
/
Mage
/
Tax
/
Model
/
[
Home
]
File: Config.php
<?php /** * Magento * * 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@magentocommerce.com so we can send you a copy immediately. * * @category Mage * @package Mage_Tax * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Configuration pathes storage * * @category Mage * @package Mage_Tax * @author Magento Core Team <core@magentocommerce.com> */ class Mage_Tax_Model_Config { // tax classes const CONFIG_XML_PATH_SHIPPING_TAX_CLASS = 'tax/classes/shipping_tax_class'; // tax calculation const CONFIG_XML_PATH_PRICE_INCLUDES_TAX = 'tax/calculation/price_includes_tax'; const CONFIG_XML_PATH_SHIPPING_INCLUDES_TAX = 'tax/calculation/shipping_includes_tax'; const CONFIG_XML_PATH_BASED_ON = 'tax/calculation/based_on'; const CONFIG_XML_PATH_APPLY_AFTER_DISCOUNT = 'tax/calculation/apply_after_discount'; const CONFIG_XML_PATH_DISCOUNT_TAX = 'tax/calculation/discount_tax'; // tax defaults const CONFIG_XML_PATH_DEFAULT_COUNTRY = 'tax/defaults/country'; const CONFIG_XML_PATH_DEFAULT_REGION = 'tax/defaults/region'; const CONFIG_XML_PATH_DEFAULT_POSTCODE = 'tax/defaults/postcode'; // tax display const CONFIG_XML_PATH_PRICE_DISPLAY_TYPE = 'tax/display/type'; const CONFIG_XML_PATH_DISPLAY_TAX_COLUMN = 'tax/display/column_in_summary'; const CONFIG_XML_PATH_DISPLAY_FULL_SUMMARY = 'tax/display/full_summary'; const CONFIG_XML_PATH_DISPLAY_SHIPPING = 'tax/display/shipping'; // deprecated settings const CONFIG_XML_PATH_SHOW_IN_CATALOG = 'tax/display/show_in_catalog'; const CONFIG_XML_PATH_DEFAULT_PRODUCT_TAX_GROUP = 'catalog/product/default_tax_group'; const CALCULATION_STRING_SEPARATOR = '|'; const DISPLAY_TYPE_EXCLUDING_TAX = 1; const DISPLAY_TYPE_INCLUDING_TAX = 2; const DISPLAY_TYPE_BOTH = 3; }