✏️ 正在编辑: woo-short-description.php
路径:
/home/lssfapb/www/wp-content/plugins/fusion-builder/shortcodes/components/woo-short-description.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Add an element to fusion-builder. * * @package fusion-builder * @since 3.2 */ if ( fusion_is_element_enabled( 'fusion_tb_woo_short_description' ) ) { if ( ! class_exists( 'FusionTB_Woo_Short_Description' ) ) { /** * Shortcode class. * * @since 3.2 */ class FusionTB_Woo_Short_Description extends Fusion_Woo_Component { /** * An array of the shortcode defaults. * * @access protected * @since 3.2 * @var array */ protected $defaults; /** * An array of the shortcode arguments. * * @access protected * @since 3.2 * @var array */ protected $args; /** * The internal container counter. * * @access private * @since 3.2 * @var int */ private $counter = 1; /** * Constructor. * * @access public * @since 3.2 */ public function __construct() { parent::__construct( 'fusion_tb_woo_short_description' ); add_filter( 'fusion_attr_fusion_tb_woo_short_description-shortcode', [ $this, 'attr' ] ); // Ajax mechanism for live editor. add_action( 'wp_ajax_get_fusion_tb_woo_short_description', [ $this, 'ajax_render' ] ); } /** * Check if component should render * * @access public * @since 3.2 * @return boolean */ public function should_render() { return is_singular(); } /** * Gets the default values. * * @static * @access public * @since 3.2 * @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' => '', // Text styles. 'text_color' => '', 'fusion_font_family_text_font' => '', 'fusion_font_variant_text_font' => '', 'text_font_size' => '', 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), 'class' => '', 'id' => '', 'animation_type' => '', 'animation_direction' => 'down', 'animation_speed' => '0.1', 'animation_offset' => $fusion_settings->get( 'animation_offset' ), ]; } /** * Render for live editor. * * @static * @access public * @since 3.2 * @param array $defaults An array of defaults. * @return void */ public function ajax_render( $defaults ) { global $product, $post; check_ajax_referer( 'fusion_load_nonce', 'fusion_load_nonce' ); $live_request = false; // From Ajax Request. if ( isset( $_POST['model'] ) && isset( $_POST['model']['params'] ) && ! apply_filters( 'fusion_builder_live_request', false ) ) { // phpcs:ignore WordPress.Security.NonceVerification $defaults = $_POST['model']['params']; // phpcs:ignore WordPress.Security $return_data = []; $live_request = true; fusion_set_live_data(); add_filter( 'fusion_builder_live_request', '__return_true' ); } if ( class_exists( 'Fusion_App' ) && $live_request ) { $post_id = isset( $_POST['post_id'] ) ? $_POST['post_id'] : get_the_ID(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput if ( ( ! $post_id || -99 === $post_id ) || ( isset( $_POST['post_id'] ) && 'fusion_tb_section' === get_post_type( $_POST['post_id'] ) ) ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput echo wp_json_encode( [] ); wp_die(); } $this->emulate_product(); if ( ! $this->is_product() ) { echo wp_json_encode( $return_data ); wp_die(); } // We need to set global $post because Woo template expects it. $post = get_post( $product->get_id() ); $return_data['woo_short_description'] = $this->get_woo_short_description_content( $defaults ); $this->restore_product(); // Restore global $post. $post = null; } echo wp_json_encode( $return_data ); wp_die(); } /** * Render the shortcode * * @access public * @since 3.2 * @param array $args Shortcode parameters. * @param string $content Content between shortcode. * @return string HTML output. */ public function render( $args, $content = '' ) { $this->defaults = self::get_element_defaults(); $this->args = FusionBuilder::set_shortcode_defaults( $this->defaults, $args, 'fusion_tb_woo_short_description' ); $this->emulate_product(); if ( ! $this->is_product() ) { return; } $html = $this->get_styles(); $html .= '<div ' . FusionBuilder::attributes( 'fusion_tb_woo_short_description-shortcode' ) . '>' . $this->get_woo_short_description_content( $this->args ) . '</div>'; $this->restore_product(); $this->counter++; $this->on_render(); return apply_filters( 'fusion_component_' . $this->shortcode_handle, $html, $args ); } /** * Builds HTML for Woo Rating element. * * @static * @access public * @since 3.2 * @param array $args The arguments. * @return string */ public function get_woo_short_description_content( $args ) { global $product, $post; // Add sample content if except is empty. if ( function_exists( 'fusion_is_preview_frame' ) && fusion_is_preview_frame() && is_object( $post ) && '' === $post->post_excerpt ) { $dummy_post = Fusion_Dummy_Post::get_dummy_post(); $post->post_excerpt = $dummy_post->post_excerpt; } $content = ''; if ( function_exists( 'wc_get_template_html' ) && is_object( $product ) ) { $content = wc_get_template_html( 'single-product/short-description.php' ); } // Undo changes made to global $post. if ( function_exists( 'fusion_is_preview_frame' ) && fusion_is_preview_frame() && isset( $dummy_post ) ) { $post->post_excerpt = ''; } return apply_filters( 'fusion_woo_component_content', $content, $this->shortcode_handle, $this->args ); } /** * Get the styles. * * @access protected * @since 3.2 * @return string */ protected function get_styles() { $this->base_selector = '.fusion-woo-short-description-tb.fusion-woo-short-description-tb-' . $this->counter; $this->dynamic_css = []; // Text styles. if ( ! $this->is_default( 'text_color' ) ) { $this->add_css_property( $this->base_selector . ' .woocommerce-product-details__short-description', 'color', $this->args['text_color'] ); } if ( ! $this->is_default( 'text_font_size' ) ) { $this->add_css_property( $this->base_selector . ' .woocommerce-product-details__short-description', 'font-size', fusion_library()->sanitize->get_value_with_unit( $this->args['text_font_size'] ) ); } // Text typography styles. $text_styles = Fusion_Builder_Element_Helper::get_font_styling( $this->args, 'text_font', 'array' ); foreach ( $text_styles as $rule => $value ) { $this->add_css_property( $this->base_selector . ' .woocommerce-product-details__short-description', $rule, $value ); } $sides = [ 'top', 'right', 'bottom', 'left' ]; foreach ( $sides as $side ) { // Element margin. $margin_name = 'margin_' . $side; if ( '' !== $this->args[ $margin_name ] ) { $this->add_css_property( $this->base_selector, 'margin-' . $side, fusion_library()->sanitize->get_value_with_unit( $this->args[ $margin_name ] ) ); } } $css = $this->parse_css(); return $css ? '<style>' . $css . '</style>' : ''; } /** * Builds the attributes array. * * @access public * @since 3.2 * @return array */ public function attr() { $attr = [ 'class' => 'fusion-woo-short-description-tb fusion-woo-short-description-tb-' . $this->counter, 'style' => '', ]; $attr = fusion_builder_visibility_atts( $this->args['hide_on_mobile'], $attr ); if ( $this->args['animation_type'] ) { $attr = Fusion_Builder_Animation_Helper::add_animation_attributes( $this->args, $attr ); } if ( $this->args['class'] ) { $attr['class'] .= ' ' . $this->args['class']; } if ( $this->args['id'] ) { $attr['id'] = $this->args['id']; } return $attr; } } } new FusionTB_Woo_Short_Description(); } /** * Map shortcode to Avada Builder * * @since 3.2 */ function fusion_component_woo_short_description() { fusion_builder_map( fusion_builder_frontend_data( 'FusionTB_Woo_Short_Description', [ 'name' => esc_attr__( 'Woo Short Description', 'fusion-builder' ), 'shortcode' => 'fusion_tb_woo_short_description', 'icon' => 'fusiona-woo-short-description', 'component' => true, 'templates' => [ 'content', 'post_cards', 'page_title_bar' ], 'subparam_map' => [ 'fusion_font_family_text_font' => 'main_typography', 'fusion_font_variant_text_font' => 'main_typography', 'text_font_size' => 'main_typography', ], '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' => '', ], 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'callback' => [ 'function' => 'fusion_style_block', ], ], [ 'type' => 'typography', 'heading' => esc_attr__( 'Typography', 'fusion-builder' ), 'description' => esc_html__( 'Controls the typography of the description text. Leave empty for the global font family.', 'fusion-builder' ), 'param_name' => 'main_typography', 'choices' => [ 'font-family' => 'text_font', 'font-size' => 'text_font_size', 'line-height' => false, 'letter-spacing' => false, 'text-transform' => false, ], 'default' => [ 'font-family' => '', 'variant' => '400', ], 'remove_from_atts' => true, 'global' => true, 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'callback' => [ 'function' => 'fusion_style_block', ], ], [ 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Text Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the text, ex: #000.' ), 'param_name' => 'text_color', 'value' => '', 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'callback' => [ 'function' => 'fusion_style_block', ], ], [ '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' => '', ], 'fusion_animation_placeholder' => [ 'preview_selector' => '.fusion-woo-short-description-tb', ], ], 'callback' => [ 'function' => 'fusion_ajax', 'action' => 'get_fusion_tb_woo_short_description', 'ajax' => true, ], ] ) ); } add_action( 'fusion_builder_before_init', 'fusion_component_woo_short_description' );
💾 保存文件
← 返回文件管理器