| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<p class="frm_grid_container"> |
| 7 |
<label for="frm_currency" class="frm4 frm_form_field frm_help" title="<?php esc_attr_e( 'Select the currency to be used by Formidable globally.', 'formidable' ); ?>"> |
| 8 |
<?php esc_html_e( 'Currency', 'formidable' ); ?> |
| 9 |
</label> |
| 10 |
<select id="frm_currency" name="frm_currency" class="frm8 frm_form_field"> |
| 11 |
<?php |
| 12 |
$selected_currency = ! empty( $frm_settings->currency ) ? strtoupper( $frm_settings->currency ) : 'USD'; |
| 13 |
foreach ( $currencies as $code => $currency ) { |
| 14 |
?> |
| 15 |
<option value="<?php echo esc_attr( $code ); ?>"<?php selected( $selected_currency, strtoupper( $code ) ); ?>> |
| 16 |
<?php echo esc_html( $currency['name'] . ' (' . $code . ')' ); ?> |
| 17 |
</option> |
| 18 |
<?php |
| 19 |
} |
| 20 |
?> |
| 21 |
</select> |
| 22 |
</p> |
| 23 |
|