コード例 #1
0
ファイル: Config.php プロジェクト: shabirm/avatax
 /**
  * Check if display cart prices included tax
  *
  * @param null|int $store
  * @return bool
  */
 public function displayCartPricesInclTax($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return false;
     }
     return parent::displayCartPricesInclTax($store);
 }
コード例 #2
0
 /**
  * Check if need display cart prices included tax
  *
  * @param   mixed $store
  * @return  bool
  */
 public function displayCartPriceInclTax($store = null)
 {
     return $this->_config->displayCartPricesInclTax($store);
 }