This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class mst_ch_highfive extends mst_ch_highfive_parent | |
{ | |
public function getPrice() | |
{ | |
if ( $this->_blNetPriceMode ) { | |
return $this->getNettoPrice(); | |
} else { | |
$value = round(($this->getBruttoPrice()+0.000001)*20)/20; | |
return $value; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defined('SHOPBASEPATH') | |
|| define('SHOPBASEPATH', realpath(dirname(__FILE__) . '/../htdocs')); | |
require_once(SHOPBASEPATH. "/core/oxfunctions.php"); | |
require_once(SHOPBASEPATH. "/core/adodblite/adodb.inc.php"); | |
function getShopBasePath() | |
{ | |
return SHOPBASEPATH . '/'; | |
} |
NewerOlder