Exemplo n.º 1
0
	<tr class="payment_row" <?php 
if (!$use_payments) {
    echo 'style="display:none"';
}
?>
>
		<th scope="row"><?php 
_e('Paypal Currency', 'appointments');
?>
</th>
		<td colspan="2">
      <select name="currency">
      <?php 
$sel_currency = $appointments->options['currency'] ? $appointments->options['currency'] : $appointments->options['currency'];
$currencies = App_Template::get_currencies();
foreach ($currencies as $k => $v) {
    echo '<option value="' . $k . '"' . ($k == $sel_currency ? ' selected' : '') . '>' . esc_html($v, true) . '</option>' . "\n";
}
?>
      </select>
    </td>
    </tr>
		<tr class="payment_row" <?php 
if (!$use_payments) {
    echo 'style="display:none"';
}
?>
>
			<th scope="row"><?php 
_e('PayPal Mode', 'appointments');