| Current Path : /home/smartconb/www/armencom33/components/com_dpcalendar/views/event/tmpl/ |
| Current File : /home/smartconb/www/armencom33/components/com_dpcalendar/views/event/tmpl/default_taxes.php |
<?php
/**
* @package DPCalendar
* @copyright Copyright (C) 2019 Digital Peak GmbH. <https://www.digital-peak.com>
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
*/
defined('_JEXEC') or die();
if (!$this->taxRate) {
return;
}
$text = sprintf(
$this->translate('COM_DPCALENDAR_VIEW_EVENT_TAXES_' . ($this->taxRate->inclusive ? 'INCLUSIVE' : 'EXCLUSIVE') . '_TEXT'),
$this->taxRate->rate,
$this->translate('COM_DPCALENDAR_COUNTRY_' . $this->country->short_code)
);
?>
<div class="com-dpcalendar-event__taxes dp-info-box"><?php echo $text ?></div>