Esempio n. 1
0
            ?>
</span>
						<input id="deposit_amount" type="text" readonly="readonly" class="input-small" value="<?php 
            echo EventbookingHelper::formatAmount($this->depositAmount, $this->config);
            ?>
" />
					</div>
				<?php 
        } else {
            ?>
					<div class="<?php 
            echo $inputAppendClass;
            ?>
 inline-display">
						<input id="deposit_amount" type="text" readonly="readonly" class="input-small" value="<?php 
            echo EventbookingHelper::formatAmount($this->depositAmount, $this->config);
            ?>
" />
						<span class="<?php 
            echo $addOnClass;
            ?>
"><?php 
            echo $this->config->currency_symbol;
            ?>
</span>
					</div>
				<?php 
        }
        ?>
			</div>
		</div>
Esempio n. 2
0
        $taxRate = $this->config->tax_rate;
    } else {
        $taxRate = 0;
    }
    foreach ($this->rowGroupRates as $rowRate) {
        $groupRate = round($rowRate->price * (1 + $taxRate / 100), 2);
        ?>
							<tr>
								<td class="eb_number_registrant_column">
									<?php 
        echo $rowRate->registrant_number;
        ?>
								</td>
								<td class="eb_rate_column">
									<?php 
        echo EventbookingHelper::formatAmount($groupRate, $this->config);
        ?>
								</td>
							</tr>
							<?php 
    }
    ?>
						</tbody>
					</table>
				<?php 
}
?>
		</div>
	</div>
	<div class="clearfix"></div>
	<?php