✏️ 正在编辑: fusion-woo-cart-coupons.php
路径:
/home/lssfapb/www/wp-content/plugins/fusion-builder/shortcodes/fusion-woo-cart-coupons.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Add an element to fusion-builder. * * @package fusion-builder * @since 3.3 */ if ( class_exists( 'WooCommerce' ) ) { if ( ! class_exists( 'FusionSC_WooCartCoupons' ) ) { /** * Shortcode class. * * @since 3.3 */ class FusionSC_WooCartCoupons extends Fusion_Element { /** * An array of the shortcode arguments. * * @access protected * @since 3.3 * @var array */ protected $args; /** * The internal container counter. * * @access private * @since 3.3 * @var int */ private $counter = 1; /** * Constructor. * * @access public * @since 1.0 */ public function __construct() { parent::__construct(); add_filter( 'fusion_attr_woo-cart-coupons-shortcode', [ $this, 'attr' ] ); add_shortcode( 'fusion_woo_cart_coupons', [ $this, 'render' ] ); // Ajax mechanism for query related part. add_action( 'wp_ajax_fusion_get_woo_cart_coupons', [ $this, 'ajax_query' ] ); } /** * Gets the query data. * * @access public * @since 3.3 * @param array $defaults An array of defaults. * @return void */ public function ajax_query( $defaults ) { check_ajax_referer( 'fusion_load_nonce', 'fusion_load_nonce' ); $this->args = $_POST['model']['params']; // phpcs:ignore WordPress.Security $html = $this->generate_element_content(); echo wp_json_encode( $html ); wp_die(); } /** * Gets the default values. * * @static * @access public * @since 2.0.0 * @return array */ public static function get_element_defaults() { $fusion_settings = awb_get_fusion_settings(); return [ // Element margin. 'margin_top' => '', 'margin_right' => '', 'margin_bottom' => '', 'margin_left' => '', 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), 'class' => '', 'id' => '', // Fields. 'field_bg_color' => $fusion_settings->get( 'form_bg_color' ), 'field_text_color' => $fusion_settings->get( 'form_text_color' ), 'field_border_color' => $fusion_settings->get( 'form_border_color' ), 'field_border_focus_color' => $fusion_settings->get( 'form_focus_border_color' ), // Animation. 'animation_type' => '', 'animation_direction' => 'down', 'animation_speed' => '0.1', 'animation_offset' => $fusion_settings->get( 'animation_offset' ), // Alignment. 'buttons_layout' => '', 'stacked_buttons_alignment' => '', 'button_span' => '', // Button margin. 'button_margin_top' => '', 'button_margin_right' => '', 'button_margin_bottom' => '', 'button_margin_left' => '', ]; } /** * Render the shortcode. * * @access public * @since 3.3 * @param array $args Shortcode parameters. * @param string $content Content between shortcode. * @return string HTML output */ public function render( $args, $content = '' ) { if ( ! is_object( WC()->cart ) || ( WC()->cart->is_empty() && ! fusion_is_preview_frame() ) ) { return; } $this->defaults = self::get_element_defaults(); $this->args = FusionBuilder::set_shortcode_defaults( self::get_element_defaults(), $args, 'fusion_tb_woo_cart_totals' ); ob_start(); ?> <?php if ( wc_coupons_enabled() ) : ?> <div <?php echo FusionBuilder::attributes( 'woo-cart-coupons-shortcode' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> <?php echo $this->generate_element_content(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> </div> <?php endif; ?> <?php $html = ob_get_clean(); if ( is_checkout() ) { $html = '<form class="fusion-woo-cart-coupons-checkout-form checkout_coupon">' . $html . '</form>'; } $html .= $this->get_styles(); $this->on_render(); $this->counter++; return apply_filters( 'fusion_element_cart_table_content', $html, $args ); } /** * Generates element content * * * @access public * * @since 3.3 * @return string */ public function generate_element_content() { $submit_button_class = ! is_checkout() ? ' fusion-apply-coupon' : ''; ob_start(); ?> <div class="avada-coupon-fields"> <input type="text" name="coupon_code" class="input-text" id="avada_coupon_code" value="" placeholder="<?php esc_attr_e( 'Coupon code', 'woocommerce' ); ?>" /> <button type="submit" class="fusion-button button-default fusion-button-default-size button<?php echo $submit_button_class; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" name="apply_coupon" value="<?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?>"><?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?></button> </div> <?php do_action( 'woocommerce_cart_coupon' ); ?> <?php return ob_get_clean(); } /** * Generates the element styles * * @access protected * @since 3.3 * @return string */ public function get_styles() { $this->base_selector = '.fusion-woo-cart_coupons-' . $this->counter; $this->dynamic_css = []; $inputs = [ $this->base_selector . ' input', $this->base_selector . ' select', $this->base_selector . ' textarea', ]; if ( ! $this->is_default( 'margin_top' ) ) { $this->add_css_property( $this->base_selector, 'margin-top', $this->args['margin_top'] ); } if ( ! $this->is_default( 'margin_bottom' ) ) { $this->add_css_property( $this->base_selector, 'margin-bottom', $this->args['margin_bottom'] ); } if ( ! $this->is_default( 'margin_left' ) ) { $this->add_css_property( $this->base_selector, 'margin-left', $this->args['margin_left'] ); } if ( ! $this->is_default( 'margin_right' ) ) { $this->add_css_property( $this->base_selector, 'margin-right', $this->args['margin_right'] ); } if ( ! $this->is_default( 'field_bg_color' ) ) { $this->add_css_property( $inputs, 'background', $this->args['field_bg_color'] ); } if ( ! $this->is_default( 'field_text_color' ) ) { $this->add_css_property( $inputs, 'color', $this->args['field_text_color'] ); $placeholder_color = Fusion_Color::new_color( $this->args['field_text_color'] )->get_new( 'alpha', '0.5' )->to_css( 'rgba' ); $placeholder_inputs = [ $this->base_selector . ' input::placeholder', $this->base_selector . ' textarea::placeholder', ]; $this->add_css_property( $placeholder_inputs, 'color', $placeholder_color ); } if ( ! $this->is_default( 'field_border_color' ) ) { $this->add_css_property( $inputs, 'border-color', $this->args['field_border_color'] ); } if ( ! $this->is_default( 'field_border_focus_color' ) ) { $hover_color = Fusion_Color::new_color( $this->args['field_border_focus_color'] )->get_new( 'alpha', '0.5' )->to_css( 'rgba' ); $hover_inputs = [ $this->base_selector . ' input:hover', $this->base_selector . ' select:hover', $this->base_selector . ' textarea:hover', ]; $this->add_css_property( $hover_inputs, 'border-color', $hover_color ); $focus_inputs = [ $this->base_selector . ' input:focus', $this->base_selector . ' select:focus', $this->base_selector . ' textarea:focus', ]; $this->add_css_property( $focus_inputs, 'border-color', $this->args['field_border_focus_color'] ); } $selector = $this->base_selector . ' button.fusion-apply-coupon'; if ( ! $this->is_default( 'button_margin_top' ) ) { $this->add_css_property( $selector, 'margin-top', $this->args['button_margin_top'] ); } if ( ! $this->is_default( 'button_margin_bottom' ) ) { $this->add_css_property( $selector, 'margin-bottom', $this->args['button_margin_bottom'] ); } if ( ! $this->is_default( 'button_margin_left' ) ) { $this->add_css_property( $selector, 'margin-left', $this->args['button_margin_left'] ); } if ( ! $this->is_default( 'button_margin_right' ) ) { $this->add_css_property( $selector, 'margin-right', $this->args['button_margin_right'] ); } $selector = $this->base_selector . ' div.avada-coupon-fields'; if ( 'floated' === $this->args['buttons_layout'] ) { $this->add_css_property( $selector, 'flex-direction', 'row' ); } else { print $this->add_css_property( $selector, 'flex-direction', 'column', true ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped $this->add_css_property( $this->base_selector . ' input#avada_coupon_code', 'flex', 'auto' ); $this->add_css_property( $this->base_selector . ' input#avada_coupon_code', 'margin-right', '0' ); if ( 'yes' === $this->args['button_span'] ) { $this->add_css_property( $selector, 'align-items', 'stretch', true ); $this->add_css_property( $this->base_selector . ' input#avada_coupon_code', 'width', '100%' ); } else { $this->add_css_property( $selector, 'align-items', $this->args['stacked_buttons_alignment'], true ); } } $css = $this->parse_css(); return $css ? '<style>' . $css . '</style>' : ''; } /** * Builds the attributes array. * * @access public * @since 1.0 * @return array */ public function attr() { $attr = fusion_builder_visibility_atts( $this->args['hide_on_mobile'], [ 'class' => 'coupon fusion-woo-cart_coupons fusion-woo-cart_coupons-' . $this->counter, 'style' => '', ] ); if ( $this->args['class'] ) { $attr['class'] .= ' ' . $this->args['class']; } if ( $this->args['id'] ) { $attr['id'] = $this->args['id']; } if ( $this->args['animation_type'] ) { $attr = Fusion_Builder_Animation_Helper::add_animation_attributes( $this->args, $attr ); } return $attr; } /** * Load base CSS. * * @access public * @since 3.0 * @return void */ public function add_css_files() { FusionBuilder()->add_element_css( FUSION_BUILDER_PLUGIN_DIR . 'assets/css/shortcodes/woo-cart-coupons.min.css' ); } } } new FusionSC_WooCartCoupons(); } /** * Map shortcode to Avada Builder. */ function fusion_element_woo_cart_coupons() { $fusion_settings = awb_get_fusion_settings(); if ( class_exists( 'WooCommerce' ) ) { fusion_builder_map( fusion_builder_frontend_data( 'FusionSC_WooCartCoupons', [ 'name' => esc_attr__( 'Woo Cart Coupons', 'fusion-builder' ), 'shortcode' => 'fusion_woo_cart_coupons', 'icon' => 'fusiona-cart-coupons', 'help_url' => '', 'inline_editor' => true, 'params' => [ [ 'type' => 'dimension', 'remove_from_atts' => true, 'heading' => esc_attr__( 'Margin', 'fusion-builder' ), 'description' => esc_attr__( 'In pixels or percentage, ex: 10px or 10%.', 'fusion-builder' ), 'param_name' => 'margin', 'callback' => [ 'function' => 'fusion_style_block', 'args' => [ 'dimension' => true, ], ], 'value' => [ 'margin_top' => '', 'margin_right' => '', 'margin_bottom' => '', 'margin_left' => '', ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Buttons Layout', 'fusion-builder' ), 'description' => esc_attr__( 'Select the layout of buttons.', 'fusion-builder' ), 'param_name' => 'buttons_layout', 'value' => [ 'floated' => esc_attr__( 'Floated', 'fusion-builder' ), 'stacked' => esc_attr__( 'Stacked', 'fusion-builder' ), ], 'default' => 'floated', ], [ 'type' => 'radio_button_set', 'heading' => esc_html__( 'Buttons Horizontal Align', 'fusion-builder' ), 'description' => esc_html__( 'Change the horizontal alignment of buttons within its container column.', 'fusion-builder' ), 'param_name' => 'stacked_buttons_alignment', 'grid_layout' => true, 'back_icons' => true, 'icons' => [ 'flex-start' => '<span class="fusiona-horizontal-flex-start"></span>', 'center' => '<span class="fusiona-horizontal-flex-center"></span>', 'flex-end' => '<span class="fusiona-horizontal-flex-end"></span>', ], 'value' => [ 'flex-start' => esc_html__( 'Flex Start', 'fusion-builder' ), 'center' => esc_html__( 'Center', 'fusion-builder' ), 'flex-end' => esc_html__( 'Flex End', 'fusion-builder' ), ], 'default' => 'flex-start', 'dependency' => [ [ 'element' => 'buttons_layout', 'value' => 'stacked', 'operator' => '==', ], ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Button Span', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to have the button span the full width.', 'fusion-builder' ), 'param_name' => 'button_span', 'value' => [ 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ], 'default' => 'no', 'dependency' => [ [ 'element' => 'buttons_layout', 'value' => 'stacked', 'operator' => '==', ], ], ], [ 'type' => 'dimension', 'remove_from_atts' => true, 'heading' => esc_attr__( 'Button Margin', 'fusion-builder' ), 'description' => esc_attr__( 'In pixels or percentage, ex: 10px or 10%.', 'fusion-builder' ), 'param_name' => 'buttonsmargin', 'value' => [ 'button_margin_top' => '', 'button_margin_right' => '', 'button_margin_bottom' => '', 'button_margin_left' => '', ], ], [ 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Form Field Background Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the background color of the form input fields.', 'fusion-builder' ), 'param_name' => 'field_bg_color', 'value' => '', 'default' => $fusion_settings->get( 'form_bg_color' ), 'callback' => [ 'function' => 'fusion_style_block', ], 'group' => esc_attr__( 'Design', 'fusion-builder' ), ], [ 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Form Field Text Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the text color of the form input fields.', 'fusion-builder' ), 'param_name' => 'field_text_color', 'value' => '', 'default' => $fusion_settings->get( 'form_text_color' ), 'callback' => [ 'function' => 'fusion_style_block', ], 'group' => esc_attr__( 'Design', 'fusion-builder' ), ], [ 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Field Border Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the border color of the form input fields.', 'fusion-builder' ), 'param_name' => 'field_border_color', 'value' => '', 'default' => $fusion_settings->get( 'form_border_color' ), 'callback' => [ 'function' => 'fusion_style_block', ], 'group' => esc_attr__( 'Design', 'fusion-builder' ), ], [ 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Field Border Color On Focus', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the border color of the form input fields on focus.', 'fusion-builder' ), 'param_name' => 'field_border_focus_color', 'value' => '', 'default' => $fusion_settings->get( 'form_focus_border_color' ), 'callback' => [ 'function' => 'fusion_style_block', ], 'group' => esc_attr__( 'Design', 'fusion-builder' ), ], 'fusion_animation_placeholder' => [ 'preview_selector' => '.fusion-woo-cart_coupons', ], [ 'type' => 'checkbox_button_set', 'heading' => esc_attr__( 'Element Visibility', 'fusion-builder' ), 'param_name' => 'hide_on_mobile', 'value' => fusion_builder_visibility_options( 'full' ), 'default' => fusion_builder_default_visibility( 'array' ), 'description' => esc_attr__( 'Choose to show or hide the element on small, medium or large screens. You can choose more than one at a time.', 'fusion-builder' ), ], [ 'type' => 'textfield', 'heading' => esc_attr__( 'CSS Class', 'fusion-builder' ), 'description' => esc_attr__( 'Add a class to the wrapping HTML element.', 'fusion-builder' ), 'param_name' => 'class', 'value' => '', ], [ 'type' => 'textfield', 'heading' => esc_attr__( 'CSS ID', 'fusion-builder' ), 'description' => esc_attr__( 'Add an ID to the wrapping HTML element.', 'fusion-builder' ), 'param_name' => 'id', 'value' => '', ], ], 'callback' => [ 'function' => 'fusion_ajax', 'action' => 'fusion_get_woo_cart_coupons', 'ajax' => true, ], ] ) ); } } add_action( 'wp_loaded', 'fusion_element_woo_cart_coupons' );
💾 保存文件
← 返回文件管理器