id = 'flags';
$this->desc = __( 'Flags', 'currency-switcher-woocommerce' );
parent::__construct();
add_action( 'woocommerce_admin_field_alg_wselect', array( $this, 'output_alg_wselect' ) );
}
/**
* output_alg_wselect.
*
* @version 2.4.4
* @since 2.4.4
* @todo check why it's loading so slow
*/
function output_alg_wselect( $value ) {
$tooltip_html = ( isset( $value['desc_tip'] ) && '' != $value['desc_tip'] ) ? '' : '';
$custom_attributes = array();
if ( ! empty( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) {
foreach ( $value['custom_attributes'] as $attribute => $attribute_value ) {
$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
}
}
$description = ' ' . $value['desc'] . '';
$option_value = WC_Admin_Settings::get_option( $value['id'], $value['default'] );
?>
|
|
__( 'Country Flags & Icons', 'currency-switcher-woocommerce' ),
'type' => 'title',
'id' => 'alg_wc_currency_switcher_flags_options',
),
array_merge(
array(
'title' => __( 'Flags', 'currency-switcher-woocommerce' ),
'type' => 'checkbox',
'desc' => '' . __( 'Enable section', 'currency-switcher-woocommerce' ) . '',
'id' => 'alg_wc_currency_switcher_flags_enabled',
'default' => 'no',
),
( get_option( 'wpwham_currency_switcher_version' ) === 'legacy' ? array(
'desc_tip' => apply_filters( 'alg_wc_currency_switcher_plugin_option', sprintf(
__( 'To enable flags, you will need %s plugin.', 'currency-switcher-woocommerce' ),
'' .
__( 'Currency Switcher for WooCommerce Pro', 'currency-switcher-woocommerce' ) . '' ), 'settings' ),
'custom_attributes' => apply_filters( 'alg_wc_currency_switcher_plugin_option', array( 'disabled' => 'disabled' ), 'settings' ),
) : array() )
),
) );
$currency_countries = alg_get_currency_countries();
$crypto_icons = alg_get_crypto_icons();
$show_flags_in_settings = ( 'yes' === apply_filters( 'alg_currency_switcher_show_flags_in_admin_settings_enabled', 'yes' ) );
foreach ( alg_get_enabled_currencies( true ) as $i => $currency ) {
if ( '' != $currency ) {
if ( false === ( $country_code = ( isset( $currency_countries[ $currency ][0] ) ? $currency_countries[ $currency ][0] : false ) ) ) {
$country_code = ( isset( $crypto_icons[ $currency ] ) ? $crypto_icons[ $currency ] : 'no-flag' );
}
$settings = array_merge( $settings, array(
array(
'title' => '#' . ( $i ) . ' [' . $currency . '] ' . $all_currencies[ $currency ],
'id' => 'alg_wc_currency_switcher_flags_' . $currency,
'default' => $country_code,
'type' => ( $show_flags_in_settings ? 'alg_wselect' : 'select' ),
'options' => array_merge(
array( 'EU' => __( 'European Union', 'currency-switcher-woocommerce' ) ),
alg_get_countries(),
array( 'global' => __( 'World', 'currency-switcher-woocommerce' ) ),
alg_get_crypto(),
array( 'no-flag' => __( 'N/A', 'currency-switcher-woocommerce' ) )
),
'class' => ( $show_flags_in_settings ? 'alg-wselect' : 'wc-enhanced-select' ),
'css' => ( $show_flags_in_settings ? 'display:none;' : '' ),
),
) );
}
}
$settings = array_merge( $settings, array(
array(
'type' => 'sectionend',
'id' => 'alg_wc_currency_switcher_flags_options',
),
) );
return $settings;
}
}
endif;
return new Alg_WC_Currency_Switcher_Settings_Flags();