%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/woocommerce-multi-currency/frontend/widgets/ |
Current File : //var/www/cwg/wp-content/plugins/woocommerce-multi-currency/frontend/widgets/widget-selector.php |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class WMC_Widget */ if ( ! class_exists( 'WMC_Widget' ) ) { class WMC_Widget extends WP_Widget { protected $settings; function __construct() { // $this->settings = new WOOMULTI_CURRENCY_Data(); $this->settings = WOOMULTI_CURRENCY_Data::get_ins(); parent::__construct( 'wmc_widget', // Base ID esc_attr__( 'Currency Selector', 'woocommerce-multi-currency' ), // Name array( 'description' => esc_attr__( 'Change display currency on shop page. Widget of WooCommerce Multi Currency by VillaTheme', 'woocommerce-multi-currency' ), ) // Args ); } /** * Show front end * * @param $args * @param $instance */ public function widget( $args, $instance ) { if ( $this->settings->get_enable() ) { echo $args['before_widget']; if ( ! empty( $instance['title'] ) ) { echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title']; } echo do_shortcode( apply_filters( 'wmc_shortcode', "[woo_multi_currency]", $instance ) ); echo $args['after_widget']; } } /** * Fields in widget configuration * * @param $instance */ public function form( $instance ) { // $setting = new WOOMULTI_CURRENCY_Data(); $setting = WOOMULTI_CURRENCY_Data::get_ins(); $title = ! empty( $instance['title'] ) ? $instance['title'] : ''; $layout = isset( $instance['layout'] ) ? $instance['layout'] : ''; $flag_size = isset( $instance['flag_size'] ) ? $instance['flag_size'] : 0; $items = $setting->get_list_shortcodes(); ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'woocommerce-multi-currency' ); ?></label> <input placeholder="<?php echo esc_attr__( 'Please enter your title', 'woocommerce-multi-currency' ) ?>" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>"> </p> <p> <label for="<?php echo $this->get_field_id( 'layout' ); ?>"><?php esc_html_e( 'Layout', 'woocommerce-multi-currency' ) ?></label> <br/> <select class="widefat" id="<?php echo $this->get_field_id( 'layout' ); ?>" name="<?php echo $this->get_field_name( 'layout' ); ?>"> <?php foreach ( $items as $k => $item ) { ?> <option value="<?php echo $k ?>" <?php selected( $k, $layout ) ?>><?php echo $item ?></option> <?php } ?> </select> </p> <p> <label for="<?php echo $this->get_field_id( 'flag_size' ); ?>"><?php esc_html_e( 'Flag size', 'woocommerce-multi-currency' ) ?></label> <br/> <select class="widefat" id="<?php echo $this->get_field_id( 'flag_size' ); ?>" name="<?php echo $this->get_field_name( 'flag_size' ); ?>"> <option value="0.6" <?php selected( $flag_size, 0.6 ) ?>><?php esc_html_e( 'Small', 'woocommerce-multi-currency' ) ?></option> <option value="0.8" <?php selected( $flag_size, 0.8 ) ?>><?php esc_html_e( 'Medium', 'woocommerce-multi-currency' ) ?></option> <option value="1" <?php selected( $flag_size, 1 ) ?>><?php esc_html_e( 'Large', 'woocommerce-multi-currency' ) ?></option> </select> </p> <?php do_action( 'wmc_after_widget_form', $instance, $this ) ?> <?php } /** * Save widget configuration * * @param $new_instance * @param $old_instance * * @return array */ public function update( $new_instance, $old_instance ) { $instance = array(); $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : ''; $instance['layout'] = ( ! empty( $new_instance['layout'] ) ) ? $new_instance['layout'] : ''; $instance['flag_size'] = ( ! empty( $new_instance['flag_size'] ) ) ? $new_instance['flag_size'] : 0; return apply_filters( 'wmc_save_widget_data', $instance, $new_instance, $old_instance ); } } } ?>