✏️ 正在编辑: fusion-facebook-page.php
路径:
/home/lssfapb/www/wp-content/plugins/fusion-builder/shortcodes/fusion-facebook-page.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Add an element to fusion-builder. * * @package fusion-builder * @since 1.0 */ if ( fusion_is_element_enabled( 'fusion_facebook_page' ) ) { if ( ! class_exists( 'FusionSC_Facebook_Page' ) ) { /** * Shortcode class. * * @package fusion-builder * @since 1.0 */ class FusionSC_Facebook_Page extends Fusion_Element { /** * The image-frame counter. * * @access private * @since 1.0 * @var int */ private $fpp_counter = 1; /** * An array of the shortcode arguments. * * @access protected * @since 1.0 * @var array */ protected $args; /** * Constructor. * * @access public * @since 1.0 */ public function __construct() { parent::__construct(); add_filter( 'fusion_attr_facebook-page-shortcode', [ $this, 'attr' ] ); add_shortcode( 'fusion_facebook_page', [ $this, 'render' ] ); } /** * 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 [ 'app_id' => '', 'href' => 'https://www.facebook.com/ThemeFusionAvada/', 'width' => '340', 'height' => '500', 'tabs' => 'timeline', 'header' => 'large', 'cover' => 'show', 'facepile' => 'show', 'cta' => 'show', 'lazy' => 'off', // margin. 'margin_top' => '', 'margin_right' => '', 'margin_bottom' => '', 'margin_left' => '', 'margin_top_medium' => '', 'margin_right_medium' => '', 'margin_bottom_medium' => '', 'margin_left_medium' => '', 'margin_top_small' => '', 'margin_right_small' => '', 'margin_bottom_small' => '', 'margin_left_small' => '', 'alignment' => '', // css. 'class' => '', 'id' => '', 'id' => '', // animation. 'animation_direction' => 'left', 'animation_offset' => $fusion_settings->get( 'animation_offset' ), 'animation_speed' => '', 'animation_type' => '', // visibility. 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), ]; } /** * Sets the args from the attributes. * * @access public * @since 3.0 * @param array $args Element attributes. * @return void */ public function set_args( $args ) { $this->defaults = self::get_element_defaults(); $this->args = FusionBuilder::set_shortcode_defaults( $this->defaults, $args, 'fusion_facebook_page' ); } /** * Render the shortcode * * @access public * @since 1.0 * @param array $args Shortcode paramters. * @param string $content Content between shortcode. * @return string HTML output. */ public function render( $args, $content = '' ) { $this->set_element_id( $this->fpp_counter ); $this->set_args( $args ); $language = get_locale(); if ( $language ) { $language = 'en_US'; } $element_styles = ''; // margins. $element_styles .= $this->build_margin_styles(); // fix animation. if ( $this->args['animation_type'] ) { $element_styles .= '.fusion-facebook-page-' . $this->fpp_counter . ' iframe { visibility:unset !important;}'; } if ( '' !== $this->args['alignment'] ) { $element_styles .= '.fusion-facebook-page-' . $this->fpp_counter . ' { display:flex; justify-content:' . $this->args['alignment'] . ';}'; } if ( '' !== $element_styles ) { $element_styles = '<style>' . $element_styles . '</style>'; } $html = ''; $consent_needed = class_exists( 'Avada_Privacy_Embeds' ) && Avada()->settings->get( 'privacy_embeds' ) && ! Avada()->privacy_embeds->get_consent( 'facebook' ); if ( $consent_needed ) { $html .= Avada()->privacy_embeds->script_placeholder( 'facebook' ); // phpcs:ignore WordPress.Security.EscapeOutput $html .= $this->facebook_privacy_script(); $html .= $element_styles . '<div ' . FusionBuilder::attributes( 'facebook-page-shortcode' ) . '></div>'; } else { $html .= $element_styles . '<div ' . FusionBuilder::attributes( 'facebook-page-shortcode' ) . '></div>'; $html .= '<script async defer crossorigin="anonymous" src="https://connect.facebook.net/' . $language . '/sdk.js#xfbml=1&version=v12.0"></script>'; // phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedScript } $html .= '<div id="fb-root"></div>'; $this->fpp_counter++; $this->on_render(); return apply_filters( 'fusion_element_facebook_page_plugin_content', $html, $args ); } /** * Builds the attributes array. * * @access public * @since 1.0 * @return array */ public function attr() { $attr = []; $attr['id'] = $this->args['id']; $attr['class'] = 'fusion-facebook-page fb-page fusion-facebook-page-' . $this->fpp_counter . ' ' . $this->args['class']; $attr = fusion_builder_visibility_atts( $this->args['hide_on_mobile'], $attr ); if ( '' !== $this->args['href'] ) { $attr['data-href'] = $this->args['href']; } if ( '' !== $this->args['tabs'] ) { $attr['data-tabs'] = $this->args['tabs']; } if ( '' !== $this->args['width'] ) { $attr['data-width'] = $this->args['width']; } if ( '' !== $this->args['height'] ) { $attr['data-height'] = $this->args['height']; } if ( 'small' === $this->args['header'] ) { $attr['data-small_header'] = 'true'; } if ( 'hide' === $this->args['cover'] ) { $attr['data-hide_cover'] = 'true'; } if ( 'hide' === $this->args['cta'] ) { $attr['data-hide_cta'] = 'true'; } if ( 'on' === $this->args['lazy'] ) { $attr['data-lazy'] = 'true'; } if ( 'hide' === $this->args['facepile'] ) { $attr['data-show_facepile'] = 'false'; } if ( $this->args['animation_type'] ) { $attr = Fusion_Builder_Animation_Helper::add_animation_attributes( $this->args, $attr ); } return $attr; } /** * Builds margin styles. * * @access public * @since 1.0 * @return array */ public function build_margin_styles() { // Responsive Margin. $fusion_settings = awb_get_fusion_settings(); $styles = ''; foreach ( [ 'large', 'medium', 'small' ] as $size ) { $margin_styles = ''; foreach ( [ 'top', 'right', 'bottom', 'left' ] as $direction ) { $margin_key = 'large' === $size ? 'margin_' . $direction : 'margin_' . $direction . '_' . $size; if ( '' !== $this->args[ $margin_key ] ) { $margin_styles .= 'margin-' . $direction . ' : ' . fusion_library()->sanitize->get_value_with_unit( $this->args[ $margin_key ] ) . ';'; } } if ( '' === $margin_styles ) { continue; } $margin_styles = '.fusion-facebook-page-' . $this->fpp_counter . '{ ' . $margin_styles . '}'; // Large styles, no wrapping needed. if ( 'large' === $size ) { $styles .= $margin_styles; } else { // Medium and Small size screen styles. $styles .= '@media only screen and (max-width:' . $fusion_settings->get( 'visibility_' . $size ) . 'px) {' . $margin_styles . '}'; } } return $styles; } /** * Facebook Script. * * @access public * @since 3.7 * @return array */ public function facebook_privacy_script() { ob_start(); $language = get_locale(); if ( $language ) { $language = 'en_US'; } ?> <span data-privacy-script="true" data-privacy-type="facebook" class="fusion-hidden"> ( function( d, s, id ) { var js, fjs = d.getElementsByTagName( s )[0]; if ( d.getElementById( id ) ) { return; } js = d.createElement( s ); js.id = id; js.src = "https://connect.facebook.net/<?php echo esc_attr( $language ); ?>/sdk.js#xfbml=1&version=v12.0"; fjs.parentNode.insertBefore( js, fjs ); }( document, 'script', 'facebook-jssdk' ) ); </span> <?php return ob_get_clean(); } } } new FusionSC_Facebook_Page(); } /** * Map shortcode to Avada Builder. * * @since 1.0 */ function fusion_facebook_page_element() { fusion_builder_map( fusion_builder_frontend_data( 'FusionSC_Facebook_Page', [ 'name' => esc_attr__( 'Facebook Page', 'fusion-builder' ), 'shortcode' => 'fusion_facebook_page', 'icon' => 'fusiona-facebook-feed', 'subparam_map' => [ 'margin_top' => 'margin', 'margin_right' => 'margin', 'margin_bottom' => 'margin', 'margin_left' => 'margin', ], 'params' => [ [ 'type' => 'textfield', 'heading' => esc_attr__( 'Page URL', 'fusion-builder' ), 'description' => esc_attr__( 'Enter the URL of the Facebook Page you want to display.', 'fusion-builder' ), 'param_name' => 'href', 'value' => 'https://www.facebook.com/ThemeFusionAvada/', ], [ 'type' => 'dimension', 'heading' => esc_attr__( 'Dimensions', 'fusion-builder' ), 'description' => esc_attr__( 'Set the element width and height. In Pixels. Width must be set between 180px and 500px.', 'fusion-builder' ), 'param_name' => 'dimension', 'value' => [ 'width' => '340', 'height' => '500', ], ], [ 'type' => 'multiple_select', 'heading' => esc_attr__( 'Tabs', 'fusion-builder' ), 'description' => esc_attr__( 'Select the Facebook tabs you wish to display.', 'fusion-builder' ), 'param_name' => 'tabs', 'default' => 'timeline', 'value' => [ 'timeline' => esc_attr__( 'Timeline', 'fusion-builder' ), 'events' => esc_attr__( 'Events', 'fusion-builder' ), 'messages' => esc_attr__( 'Messages', 'fusion-builder' ), ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Header', 'fusion-builder' ), 'description' => esc_attr__( 'Select the header size.', 'fusion-builder' ), 'param_name' => 'header', 'default' => 'large', 'value' => [ 'large' => esc_attr__( 'Large', 'fusion-builder' ), 'small' => esc_attr__( 'Small', 'fusion-builder' ), ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Cover Photo', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to show or hide the cover photo in the header.', 'fusion-builder' ), 'param_name' => 'cover', 'default' => 'show', 'value' => [ 'show' => esc_attr__( 'Show', 'fusion-builder' ), 'hide' => esc_attr__( 'Hide', 'fusion-builder' ), ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Friends Photos', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to show or hide profile photos of friends that like the page.', 'fusion-builder' ), 'param_name' => 'facepile', 'default' => 'show', 'value' => [ 'show' => esc_attr__( 'Show', 'fusion-builder' ), 'hide' => esc_attr__( 'Hide', 'fusion-builder' ), ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Call To Action', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to show or hide the custom call to action button of the page.', 'fusion-builder' ), 'param_name' => 'cta', 'default' => 'show', 'value' => [ 'show' => esc_attr__( 'Show', 'fusion-builder' ), 'hide' => esc_attr__( 'Hide', 'fusion-builder' ), ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Lazy Load', 'fusion-builder' ), 'description' => esc_attr__( 'Enable/Disable lazy loading.', 'fusion-builder' ), 'param_name' => 'lazy', 'default' => 'off', 'value' => [ 'on' => esc_attr__( 'On', 'fusion-builder' ), 'off' => esc_attr__( 'Off', 'fusion-builder' ), ], ], 'fusion_margin_placeholder' => [ 'param_name' => 'margin', 'value' => [ 'margin_top' => '', 'margin_right' => '', 'margin_bottom' => '', 'margin_left' => '', ], 'responsive' => [ 'state' => 'large', ], 'callback' => [ 'function' => 'fusion_style_block', ], ], [ 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Alignment', 'fusion-builder' ), 'description' => esc_attr__( 'Choose how the element should align inside the Column.', 'fusion-builder' ), 'param_name' => 'alignment', 'default' => 'flex-start', 'value' => [ 'flex-start' => esc_attr__( 'Flex Start', 'fusion-builder' ), 'center' => esc_attr__( 'Center', 'fusion-builder' ), 'flex-end' => esc_attr__( 'Flex End', 'fusion-builder' ), ], '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>', ], 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'grid_layout' => true, 'back_icons' => true, 'callback' => [ 'function' => 'fusion_style_block', ], ], 'fusion_animation_placeholder' => [ 'preview_selector' => '.fusion-facebook-page', ], [ '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' ), ], 'fusion_sticky_visibility_placeholder' => [], [ 'type' => 'textfield', 'heading' => esc_attr__( 'CSS Class', 'fusion-builder' ), 'param_name' => 'class', 'value' => '', 'description' => esc_attr__( 'Add a class to the wrapping HTML element.', 'fusion-builder' ), ], [ 'type' => 'textfield', 'heading' => esc_attr__( 'CSS ID', 'fusion-builder' ), 'param_name' => 'id', 'value' => '', 'description' => esc_attr__( 'Add an ID to the wrapping HTML element.', 'fusion-builder' ), ], ], ] ) ); } add_action( 'fusion_builder_before_init', 'fusion_facebook_page_element' );
💾 保存文件
← 返回文件管理器