PATH:
home
/
letacommog
/
lesfinessaveurs
/
wp-content
/
plugins
/
fusion-builder
/
shortcodes
<?php if ( ! class_exists( 'FusionSC_Container' ) ) { /** * Shortcode class. * * @package fusion-builder * @since 1.0 */ class FusionSC_Container extends Fusion_Element { /** * An array of the shortcode arguments. * * @access protected * @since 1.0 * @var array */ protected $args; /** * The internal container counter. * * @access private * @since 1.3 * @var int */ private $container_counter = 1; /** * The counter for 100% height scroll sections. * * @access private * @since 1.3 * @var int */ private $scroll_section_counter = 0; /** * The counter for elements in a 100% height scroll section. * * @access private * @since 1.3 * @var int */ private $scroll_section_element_counter = 1; /** * Stores the navigation for a scroll section. * * @access private * @since 1.3 * @var int */ private $scroll_section_navigation = ''; /** * Constructor. * * @access public * @since 1.0 */ public function __construct() { parent::__construct(); add_shortcode( 'fusion_builder_container', array( $this, 'render' ) ); } /** * Container shortcode. * * @access public * @since 1.0 * @param array $atts The attributes array. * @param string $content The content. * @return string */ public function render( $atts, $content = '' ) { global $fusion_settings; if ( ! $fusion_settings ) { $fusion_settings = Fusion_Settings::get_instance(); } $atts = fusion_section_deprecated_args( $atts ); $this->args = FusionBuilder::set_shortcode_defaults( array( 'admin_label' => '', 'is_nested' => '0', // Variable that simply checks if the current container is a nested one (e.g. from FAQ or blog element). 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), 'id' => '', 'class' => '', 'status' => 'published', 'publish_date' => '', // Background. 'background_color' => $fusion_settings->get( 'full_width_bg_color' ), 'background_image' => '', 'background_position' => 'center center', 'background_repeat' => 'no-repeat', 'background_parallax' => 'none', 'parallax_speed' => '0.3', 'opacity' => '100', 'break_parents' => '0', 'fade' => 'no', // Style. 'hundred_percent' => 'no', 'hundred_percent_height' => 'no', 'hundred_percent_height_scroll' => 'no', 'hundred_percent_height_center_content' => 'no', 'padding_bottom' => '', 'padding_left' => '', 'padding_right' => '', 'padding_top' => '', 'border_color' => $fusion_settings->get( 'full_width_border_color' ), 'border_size' => $fusion_settings->get( 'full_width_border_size' ), 'border_style' => 'solid', 'equal_height_columns' => 'no', 'data_bg_height' => '', 'data_bg_width' => '', 'enable_mobile' => 'no', 'menu_anchor' => '', 'margin_top' => '', 'margin_bottom' => '', // Video Background. 'video_mp4' => '', 'video_webm' => '', 'video_ogv' => '', 'video_loop' => 'yes', 'video_mute' => 'yes', 'video_preview_image' => '', 'overlay_color' => '', 'overlay_opacity' => '0.5', 'video_url' => '', 'video_loop_refinement' => '', 'video_aspect_ratio' => '16:9', ), $atts, 'fusion_builder_container' ); extract( $this->args ); // If container is no published, return early. if ( ! apply_filters( 'fusion_is_container_viewable', $this->is_container_viewable(), $this->args ) ) { return; } // @codingStandardsIgnoreLine global $parallax_id, $fusion_fwc_type, $is_IE, $is_edge, $fusion_library, $columns, $global_container_count; $fusion_fwc_type = array(); $style = ''; $classes = 'fusion-fullwidth fullwidth-box'; $outer_html = ''; // Video background. $video_bg = false; $video_src = ''; // TODO: refactor this whole section. $c_page_id = $fusion_library->get_page_id(); $width_100 = false; $page_template = ''; // Placeholder background color. if ( false !== strpos( $background_image, 'https://placehold.it/' ) ) { $dimensions = str_replace( 'x', '', str_replace( 'https://placehold.it/', '', $background_image ) ); if ( is_numeric( $dimensions ) ) { $background_image = $background_image . '/333333/ffffff/'; } } if ( function_exists( 'is_woocommerce' ) ) { if ( is_woocommerce() ) { $custom_fields = get_post_custom_values( '_wp_page_template', $c_page_id ); $page_template = ( is_array( $custom_fields ) && ! empty( $custom_fields ) ) ? $custom_fields[0] : ''; } } $background_color = ( '' !== $overlay_color ) ? $fusion_library->sanitize->get_rgba( $overlay_color, $overlay_opacity ) : $background_color; $alpha = 1; if ( class_exists( 'Fusion_Color' ) ) { $alpha = Fusion_Color::new_color( $background_color )->alpha; } if ( 1 > $alpha && 0 !== $alpha ) { $classes .= ' fusion-blend-mode'; } // @codingStandardsIgnoreLine if ( $is_IE || $is_edge ) { if ( 1 > $alpha ) { $classes .= ' fusion-ie-mode'; } } if ( ! empty( $video_mp4 ) ) { $video_src .= '<source src="' . $video_mp4 . '" type="video/mp4">'; $video_bg = true; } if ( ! empty( $video_webm ) ) { $video_src .= '<source src="' . $video_webm . '" type="video/webm">'; $video_bg = true; } if ( ! empty( $video_ogv ) ) { $video_src .= '<source src="' . $video_ogv . '" type="video/ogg">'; $video_bg = true; } if ( ! empty( $video_url ) ) { $video_bg = true; } if ( true == $video_bg ) { $classes .= ' video-background'; if ( ! empty( $video_url ) ) { $video_url = fusion_builder_get_video_provider( $video_url ); if ( 'youtube' == $video_url['type'] ) { $outer_html .= "<div style='opacity:0;' class='fusion-background-video-wrapper' id='video-" . ( $parallax_id++ ) . "' data-youtube-video-id='" . $video_url['id'] . "' data-mute='" . $video_mute . "' data-loop='" . ( 'yes' == $video_loop ? 1 : 0 ) . "' data-loop-adjustment='" . $video_loop_refinement . "' data-video-aspect-ratio='" . $video_aspect_ratio . "'><div class='fusion-container-video-bg' id='video-" . ( $parallax_id++ ) . "-inner'></div></div>"; } elseif ( 'vimeo' == $video_url['type'] ) { $outer_html .= '<div id="video-' . $parallax_id . '" class="fusion-background-video-wrapper" data-vimeo-video-id="' . $video_url['id'] . '" data-mute="' . $video_mute . '" data-video-aspect-ratio="' . $video_aspect_ratio . '" style="opacity:0;"><iframe id="video-iframe-' . $parallax_id . '" class="fusion-container-video-bg" src="//player.vimeo.com/video/' . $video_url['id'] . '?html5=1&autopause=0&autoplay=1&badge=0&byline=0&autopause=0&loop=' . ( 'yes' == $video_loop ? '1' : '0' ) . '&title=0' . ( 'yes' === $video_mute ? '&muted=1' : '' ) . '" frameborder="0"></iframe></div>'; } } else { $video_attributes = 'preload="auto" autoplay'; if ( 'yes' == $video_loop ) { $video_attributes .= ' loop'; } if ( 'yes' == $video_mute ) { $video_attributes .= ' muted'; } // Video Preview Image. if ( ! empty( $video_preview_image ) ) { $video_preview_image_style = 'background-image:url(' . $video_preview_image . ');'; $outer_html .= '<div class="fullwidth-video-image" style="' . $video_preview_image_style . '"></div>'; } $outer_html .= '<div class="fullwidth-video"><video ' . $video_attributes . '>' . $video_src . '</video></div>'; } // Video Overlay. if ( ! empty( $background_color ) && 1 > $alpha ) { $overlay_style = 'background-color:' . $background_color . ';'; $outer_html .= '<div class="fullwidth-overlay" style="' . $overlay_style . '"></div>'; } } // Background. if ( ! empty( $background_color ) && ! ( 'yes' === $fade && ! empty( $background_image ) && false === $video_bg ) ) { $style .= 'background-color: ' . esc_attr( $background_color ) . ';'; } if ( ! empty( $background_image ) && 'yes' !== $fade ) { $style .= 'background-image: url("' . esc_url_raw( $background_image ) . '");'; } if ( ! empty( $background_position ) ) { $style .= 'background-position: ' . esc_attr( $background_position ) . ';'; } if ( ! empty( $background_repeat ) ) { $style .= 'background-repeat: ' . esc_attr( $background_repeat ) . ';'; } // Get correct container padding. $paddings = array( 'top', 'right', 'bottom', 'left' ); foreach ( $paddings as $padding ) { $padding_name = 'padding_' . $padding; if ( '' === ${$padding_name} ) { // TO padding. ${$padding_name} = $fusion_settings->get( 'container_padding_default', $padding ); $is_hundred_percent_template = apply_filters( 'fusion_is_hundred_percent_template', false, $c_page_id ); if ( $is_hundred_percent_template ) { ${$padding_name} = $fusion_settings->get( 'container_padding_100', $padding ); } } // Add padding to style. if ( ! empty( ${$padding_name} ) ) { $style .= 'padding-' . $padding . ':' . $fusion_library->sanitize->get_value_with_unit( ${$padding_name} ) . ';'; } } // Margin; for separator conversion only. if ( ! empty( $margin_bottom ) ) { $style .= 'margin-bottom: ' . $fusion_library->sanitize->get_value_with_unit( $margin_bottom ) . ';'; } if ( ! empty( $margin_top ) ) { $style .= 'margin-top: ' . $fusion_library->sanitize->get_value_with_unit( $margin_top ) . ';'; } // Border. if ( ! empty( $border_size ) ) { $style .= 'border-top-width:' . esc_attr( FusionBuilder::validate_shortcode_attr_value( $border_size, 'px' ) ) . ';'; $style .= 'border-bottom-width:' . esc_attr( FusionBuilder::validate_shortcode_attr_value( $border_size, 'px' ) ) . ';'; $style .= 'border-color:' . esc_attr( $border_color ) . ';'; $style .= 'border-top-style:' . esc_attr( $border_style ) . ';'; $style .= 'border-bottom-style:' . esc_attr( $border_style ) . ';'; } // Fading Background. if ( 'yes' === $fade && ! empty( $background_image ) && false === $video_bg ) { $bg_type = 'faded'; $fade_style = ''; $classes .= ' faded-background'; if ( 'none' !== $background_parallax ) { $fade_style .= 'background-attachment:' . $background_parallax . ';'; } if ( $background_color ) { $fade_style .= 'background-color:' . $background_color . ';'; } if ( $background_image ) { $fade_style .= 'background-image: url(' . $background_image . ');'; } if ( $background_position ) { $fade_style .= 'background-position:' . $background_position . ';'; } if ( $background_repeat ) { $fade_style .= 'background-repeat:' . $background_repeat . ';'; } if ( 'no-repeat' === $background_repeat ) { $fade_style .= '-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;'; } $outer_html .= '<div class="fullwidth-faded" style="' . $fade_style . '"></div>'; } if ( ! empty( $background_image ) && false == $video_bg ) { if ( 'no-repeat' == $background_repeat ) { $style .= '-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;'; } } // Parallax. $parallax_helper = ''; if ( false === $video_bg && ! empty( $background_image ) ) { $parallax_data = ''; $parallax_data .= ' data-bg-align="' . esc_attr( $background_position ) . '"'; $parallax_data .= ' data-direction="' . $background_parallax . '"'; $parallax_data .= ' data-mute="' . ( 'mute' == $video_mute ? 'true' : 'false' ) . '"'; $parallax_data .= ' data-opacity="' . esc_attr( $opacity ) . '"'; $parallax_data .= ' data-velocity="' . esc_attr( (float) $parallax_speed * -1 ) . '"'; $parallax_data .= ' data-mobile-enabled="' . ( ( 'yes' === $enable_mobile ) ? 'true' : 'false' ) . '"'; $parallax_data .= ' data-break_parents="' . esc_attr( $break_parents ) . '"'; $parallax_data .= ' data-bg-image="' . esc_attr( $background_image ) . '"'; $parallax_data .= ' data-bg-repeat="' . esc_attr( isset( $background_repeat ) && 'no-repeat' != $background_repeat ? 'true' : 'false' ) . '"'; $parallax_data .= ' data-bg-height="' . esc_attr( $data_bg_height ) . '"'; $parallax_data .= ' data-bg-width="' . esc_attr( $data_bg_width ) . '"'; if ( 'none' !== $background_parallax && 'fixed' !== $background_parallax ) { $parallax_helper = '<div class="fusion-bg-parallax" ' . $parallax_data . '></div>'; } // Parallax css class. if ( ! empty( $background_parallax ) ) { $classes .= " fusion-parallax-{$background_parallax}"; } if ( 'none' !== $background_parallax ) { $style .= 'background-attachment:' . $background_parallax . ';'; } } // Custom CSS class. if ( ! empty( $class ) ) { $classes .= " {$class}"; } if ( '100%' === $fusion_settings->get( 'site_width' ) || is_page_template( '100-width.php' ) || is_page_template( 'blank.php' ) || ( '1' == FusionBuilder::get_page_option( 'portfolio_width_100', 'portfolio_width_100', $c_page_id ) || 'yes' === FusionBuilder::get_page_option( 'portfolio_width_100', 'portfolio_width_100', $c_page_id ) && 'avada_portfolio' == get_post_type( $c_page_id ) ) || '100-width.php' === $page_template ) { $width_100 = true; } // Hundred percent. $classes .= ( 'yes' === $hundred_percent ) ? ' hundred-percent-fullwidth' : ' nonhundred-percent-fullwidth'; $fusion_fwc_type['content'] = ( 'yes' === $hundred_percent ) ? 'fullwidth' : 'contained'; $fusion_fwc_type['width_100_percent'] = $width_100; $fusion_fwc_type['padding'] = array( 'left' => $padding_left, 'right' => $padding_right, ); // Hundred percent height. $scroll_section_container = $data_attr = $active_class = $css_id = ''; if ( 'yes' === $hundred_percent_height ) { $classes .= ' hundred-percent-height'; if ( 'yes' === $hundred_percent_height_center_content ) { $classes .= ' hundred-percent-height-center-content'; } if ( 'yes' === $hundred_percent_height_scroll && ! $is_nested ) { if ( 1 === $this->scroll_section_element_counter ) { $this->scroll_section_counter++; $scroll_section_container = '<div id="fusion-scroll-section-' . $this->scroll_section_counter . '" class="fusion-scroll-section" data-section="' . $this->scroll_section_counter . '">'; $active_class .= ' active'; } $classes .= ' hundred-percent-height-scrolling'; if ( '' !== $id ) { $css_id = $id; } $id = 'fusion-scroll-section-element-' . $this->scroll_section_counter . '-' . $this->scroll_section_element_counter; $data_attr = ' data-section="' . $this->scroll_section_counter . '" data-element="' . $this->scroll_section_element_counter . '"'; $this->scroll_section_navigation .= '<li><a href="#' . $id . '" class="fusion-scroll-section-link" data-name="' . $admin_label . '" data-element="' . $this->scroll_section_element_counter . '"><span class="fusion-scroll-section-link-bullet"></span></a></li>'; $this->scroll_section_element_counter++; } else { $classes .= ' non-hundred-percent-height-scrolling'; } } else { $classes .= ' non-hundred-percent-height-scrolling'; } if ( ( $global_container_count === $this->container_counter || 'no' === $hundred_percent_height_scroll || 'no' === $hundred_percent_height ) && ! $is_nested ) { if ( 1 < $this->scroll_section_element_counter ) { $scroll_navigation_position = ( 'Right' === $fusion_settings->get( 'header_position' ) || is_rtl() ) ? 'scroll-navigation-left' : 'scroll-navigation-right'; $scroll_section_container = '<nav id="fusion-scroll-section-nav-' . $this->scroll_section_counter . '" class="fusion-scroll-section-nav ' . $scroll_navigation_position . '" data-section="' . $this->scroll_section_counter . '"><ul>' . $this->scroll_section_navigation . '</ul></nav>'; $scroll_section_container .= '</div>'; } $this->scroll_section_element_counter = 1; $this->scroll_section_navigation = ''; } // Equal column height. if ( 'yes' === $equal_height_columns ) { $classes .= ' fusion-equal-height-columns'; } // Visibility classes. if ( 'no' === $hundred_percent_height || 'no' === $hundred_percent_height_scroll ) { $classes = fusion_builder_visibility_atts( $hide_on_mobile, $classes ); } $main_content = do_shortcode( fusion_builder_fix_shortcodes( $content ) ); // Additional wrapper for content centering. if ( 'yes' === $hundred_percent_height && 'yes' === $hundred_percent_height_center_content ) { $main_content = '<div class="fusion-fullwidth-center-content">' . $main_content . '</div>'; } // CSS inline style. $style = ! empty( $style ) ? " style='{$style}'" : ''; // Custom CSS ID. $id = ( '' !== $id ) ? ' id="' . esc_attr( $id ) . '"' : ''; $output = $parallax_helper . '<div' . $id . ' class="' . $classes . '" ' . $style . '>' . $outer_html . $main_content . '</div>'; // Menu anchor. if ( ! empty( $menu_anchor ) ) { $output = '<div id="' . $menu_anchor . '">' . $output . '</div>'; } if ( 'yes' === $hundred_percent_height_scroll && 'yes' === $hundred_percent_height && ! $is_nested ) { // Custom CSS ID. $css_id = ( '' !== $css_id ) ? ' id="' . esc_attr( $css_id ) . '"' : ''; $output = '<div' . $css_id . ' class="fusion-scroll-section-element' . $active_class . '"' . $data_attr . '>' . $output . '</div>'; } if ( $global_container_count === $this->container_counter && 'yes' === $hundred_percent_height_scroll && 'yes' === $hundred_percent_height && ! $is_nested ) { $output = $output . $scroll_section_container; } else { $output = $scroll_section_container . $output; } $fusion_fwc_type = array(); $columns = 0; if ( ! $is_nested ) { $this->container_counter++; } return $output; } /** * Check if container should render. * * @access public * @since 1.7 * @return array */ public function is_container_viewable() { // Published, all can see. if ( 'published' === $this->args['status'] || '' === $this->args['status'] ) { return true; } // If is author, can also see. if ( is_user_logged_in() && current_user_can( 'publish_posts' ) ) { return true; } // Set to hide. if ( 'draft' === $this->args['status'] ) { return false; } // Set to show until or after. $time_check = strtotime( $this->args['publish_date'] ); $wp_local_time = current_time( 'timestamp' ); if ( '' !== $this->args['publish_date'] && $time_check ) { if ( 'published_until' === $this->args['status'] ) { return $wp_local_time < $time_check; } if ( 'publish_after' === $this->args['status'] ) { return $wp_local_time > $time_check; } } // Any incorrect set-up default to show. return true; } /** * Builds the dynamic styling. * * @access public * @since 1.1 * @return array */ public function add_styling() { global $fusion_library, $fusion_settings; $css['global']['.fusion-builder-row.fusion-row']['max-width'] = $fusion_library->sanitize->size( $fusion_settings->get( 'site_width' ) ); $css['global']['.fusion-scroll-section-nav']['background-color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'container_scroll_nav_bg_color' ) ); $css['global']['.fusion-scroll-section-link-bullet']['background-color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'container_scroll_nav_bullet_color' ) ); return $css; } /** * Adds settings to element options panel. * * @access public * @since 1.1 * @return array $sections Column settings. */ public function add_options() { return array( 'container_shortcode_section' => array( 'label' => esc_html__( 'Container Element', 'fusion-builder' ), 'description' => '', 'id' => 'fullwidth_shortcode_section', 'type' => 'accordion', 'fields' => array( 'container_padding_default' => array( 'label' => esc_html__( 'Container Padding for Default Template', 'fusion-builder' ), 'description' => esc_html__( 'Controls the top/right/bottom/left padding of the container element when using the Default page template. ', 'fusion-builder' ), 'id' => 'container_padding_default', 'choices' => array( 'top' => true, 'bottom' => true, 'left' => true, 'right' => true, 'units' => array( 'px', '%' ), ), 'default' => array( 'top' => '0px', 'bottom' => '0px', 'left' => '0px', 'right' => '0px', ), 'type' => 'spacing', ), 'container_padding_100' => array( 'label' => esc_html__( 'Container Padding for 100% Width Template', 'fusion-builder' ), 'description' => esc_html__( 'Controls the top/right/bottom/left padding of the container element when using the 100% width page template.', 'fusion-builder' ), 'id' => 'container_padding_100', 'choices' => array( 'top' => true, 'bottom' => true, 'left' => true, 'right' => true, 'units' => array( 'px', '%' ), ), 'default' => array( 'top' => '0px', 'bottom' => '0px', 'left' => '30px', 'right' => '30px', ), 'type' => 'spacing', ), 'full_width_bg_color' => array( 'label' => esc_html__( 'Container Background Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the background color of the container element.', 'fusion-builder' ), 'id' => 'full_width_bg_color', 'default' => 'rgba(255,255,255,0)', 'type' => 'color-alpha', ), 'full_width_border_size' => array( 'label' => esc_html__( 'Container Border Size', 'fusion-builder' ), 'description' => esc_html__( 'Controls the top and bottom border size of the container element.', 'fusion-builder' ), 'id' => 'full_width_border_size', 'default' => '0', 'type' => 'slider', 'choices' => array( 'min' => '0', 'max' => '50', 'step' => '1', ), ), 'full_width_border_color' => array( 'label' => esc_html__( 'Container Border Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the border color of the container element.', 'fusion-builder' ), 'id' => 'full_width_border_color', 'default' => '#eae9e9', 'type' => 'color-alpha', ), 'container_scroll_nav_bg_color' => array( 'label' => esc_html__( 'Container 100% Height Navigation Background Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the background colors of the navigation area and name box when using 100% height containers.', 'fusion-builder' ), 'id' => 'container_scroll_nav_bg_color', 'default' => 'rgba(0, 0, 0, 0.2)', 'type' => 'color-alpha', ), 'container_scroll_nav_bullet_color' => array( 'label' => esc_html__( 'Container 100% Height Navigation Element Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the navigation circles and text name when using 100% height containers.', 'fusion-builder' ), 'id' => 'container_scroll_nav_bullet_color', 'default' => '#eeeeee', 'type' => 'color-alpha', ), 'container_hundred_percent_height_mobile' => array( 'label' => esc_html__( 'Container 100% Height On Mobile', 'fusion-builder' ), 'description' => esc_html__( 'Turn on to enable the 100% height containers on mobile. Please note, this feature only works when your containers have minimal content. If the container has a lot of content it will overflow the screen height. In many cases, 100% height containers work well on desktop, but will need disabled on mobile.', 'fusion-builder' ), 'id' => 'container_hundred_percent_height_mobile', 'default' => '0', 'type' => 'switch', ), ), ), ); } /** * Sets the necessary scripts. * * @access public * @since 1.1 * @return void */ public function add_scripts() { global $fusion_library, $fusion_settings; if ( ! $fusion_settings ) { $fusion_settings = Fusion_Settings::get_instance(); } $is_sticky_header_transparent = 0; $c_page_id = $fusion_library->get_page_id(); if ( 1 > Fusion_Color::new_color( $fusion_settings->get( 'header_sticky_bg_color' ) )->alpha ) { $is_sticky_header_transparent = 1; } Fusion_Dynamic_JS::enqueue_script( 'fusion-container', FusionBuilder::$js_folder_url . '/general/fusion-container.js', FusionBuilder::$js_folder_path . '/general/fusion-container.js', array( 'jquery', 'modernizr', 'fusion-animations', 'jquery-fade', 'fusion-parallax', 'fusion-video-general', 'fusion-video-bg' ), '1', true ); Fusion_Dynamic_JS::localize_script( 'fusion-container', 'fusionContainerVars', array( 'content_break_point' => intval( $fusion_settings->get( 'content_break_point' ) ), 'container_hundred_percent_height_mobile' => intval( $fusion_settings->get( 'container_hundred_percent_height_mobile' ) ), 'is_sticky_header_transparent' => $is_sticky_header_transparent, ) ); } } } new FusionSC_Container(); /** * Map Column shortcode to Fusion Builder. * * @since 1.0 */ function fusion_builder_add_section() { global $fusion_settings; if ( ! $fusion_settings ) { $fusion_settings = Fusion_Settings::get_instance(); } $subset = array( 'top', 'right', 'bottom', 'left' ); $setting = 'container_padding'; $default = rtrim( $fusion_settings->get_default_description( $setting . '_default', $subset, '' ), '.' ); $default .= __( ' on default template. ', 'fusion-builder' ); $default .= rtrim( $fusion_settings->get_default_description( $setting . '_100', $subset, '' ), '.' ); $default .= __( ' on 100% width template.', 'fusion-builder' ); fusion_builder_map( array( 'name' => esc_attr__( 'Container', 'fusion-builder' ), 'shortcode' => 'fusion_builder_container', 'hide_from_builder' => true, 'params' => array( array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Interior Content Width', 'fusion-builder' ), 'description' => esc_attr__( 'Select if the interior content is contained to site width or 100% width.', 'fusion-builder' ), 'param_name' => 'hundred_percent', 'value' => array( 'yes' => esc_attr__( '100% Width', 'fusion-builder' ), 'no' => esc_attr__( 'Site Width', 'fusion-builder' ), ), 'default' => 'no', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( '100% Height', 'fusion-builder' ), 'description' => sprintf( __( 'Select if the container should be fixed to 100%% height of the viewport. Larger content that is taller than the screen height will be cut off, this option works best with minimal content. <strong>Important:</strong> Mobile devices are even shorter in height so this option can be disabled on mobile in <a href="%s" target="_blank" rel="noopener noreferrer">theme options</a> while still being active on desktop.', 'fusion-builder' ), $fusion_settings->get_setting_link( 'container_hundred_percent_height_mobile' ) ), 'param_name' => 'hundred_percent_height', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'no', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Enable 100% Height Scroll', 'fusion-builder' ), 'description' => __( 'Select to add this container to a collection of 100% height containers that share scrolling navigation. <strong>Important:</strong> When this option is used, the mobile visibility settings are disabled.', 'fusion-builder' ), 'param_name' => 'hundred_percent_height_scroll', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'no', 'group' => esc_attr__( 'General', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'hundred_percent_height', 'value' => 'yes', 'operator' => '==', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Center Content', 'fusion-builder' ), 'description' => esc_attr__( 'Set to "Yes" to center the content vertically on 100% height containers.', 'fusion-builder' ), 'param_name' => 'hundred_percent_height_center_content', 'default' => 'yes', 'group' => esc_attr__( 'General', 'fusion-builder' ), 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'dependency' => array( array( 'element' => 'hundred_percent_height', 'value' => 'yes', 'operator' => '==', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Set Columns to Equal Height', 'fusion-builder' ), 'description' => esc_attr__( 'Select to set all columns that are used inside the container to have equal height.', 'fusion-builder' ), 'param_name' => 'equal_height_columns', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'no', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Name Of Menu Anchor', 'fusion-builder' ), 'description' => esc_attr__( 'This name will be the id you will have to use in your one page menu.', 'fusion-builder' ), 'param_name' => 'menu_anchor', 'value' => '', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( 'type' => 'checkbox_button_set', 'heading' => esc_attr__( 'Container 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 section on small, medium or large screens. You can choose more than one at a time.', 'fusion-builder' ), 'or' => true, 'dependency' => array( array( 'element' => 'hundred_percent_height', 'value' => 'yes', 'operator' => '!=', ), array( 'element' => 'hundred_percent_height_scroll', 'value' => 'yes', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Container Publishing Status', 'fusion-builder' ), 'description' => __( 'Controls the publishing status of the container. If draft is selected the container will only be visible to logged in users with the capability to publish posts. If published until or publish after are selected the container will be in draft mode when not published.', 'fusion-builder' ), 'param_name' => 'status', 'default' => 'published', 'value' => array( 'published' => esc_attr__( 'Published', 'fusion-builder' ), 'published_until' => esc_attr__( 'Published Until', 'fusion-builder' ), 'publish_after' => esc_attr__( 'Publish After', 'fusion-builder' ), 'draft' => esc_attr__( 'Draft', 'fusion-builder' ), ), ), array( 'type' => 'date_time_picker', 'heading' => esc_attr__( 'Container Publishing Date', 'fusion-builder' ), 'description' => __( 'Controls when the container should be published. Can be before a date or after a date. Use SQL time format: YYYY-MM-DD HH:MM:SS. E.g: 2016-05-10 12:30:00. Timezone of site is used.', 'fusion-builder' ), 'param_name' => 'publish_date', 'value' => '', 'dependency' => array( array( 'element' => 'status', 'value' => 'published', 'operator' => '!=', ), array( 'element' => 'status', 'value' => 'draft', 'operator' => '!=', ), ), ), array( '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' => '', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( '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' => '', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Container Background Color', 'fusion-builder' ), 'param_name' => 'background_color', 'value' => '', 'description' => esc_attr__( 'Controls the background color of the container element.', 'fusion-builder' ), 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'default' => $fusion_settings->get( 'full_width_bg_color' ), ), array( 'type' => 'upload', 'heading' => esc_attr__( 'Background Image', 'fusion-builder' ), 'description' => esc_attr__( 'Upload an image to display in the background.', 'fusion-builder' ), 'param_name' => 'background_image', 'value' => '', 'group' => esc_attr__( 'Background', 'fusion-builder' ), ), array( 'type' => 'select', 'heading' => esc_attr__( 'Background Position', 'fusion-builder' ), 'description' => esc_attr__( 'Choose the postion of the background image.', 'fusion-builder' ), 'param_name' => 'background_position', 'value' => array( 'left top' => esc_attr__( 'Left Top', 'fusion-builder' ), 'left center' => esc_attr__( 'Left Center', 'fusion-builder' ), 'left bottom' => esc_attr__( 'Left Bottom', 'fusion-builder' ), 'right top' => esc_attr__( 'Right Top', 'fusion-builder' ), 'right center' => esc_attr__( 'Right Center', 'fusion-builder' ), 'right bottom' => esc_attr__( 'Right Bottom', 'fusion-builder' ), 'center top' => esc_attr__( 'Center Top', 'fusion-builder' ), 'center center' => esc_attr__( 'Center Center', 'fusion-builder' ), 'center bottom' => esc_attr__( 'Center Bottom', 'fusion-builder' ), ), 'default' => 'center center', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'background_image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'select', 'heading' => esc_attr__( 'Background Repeat', 'fusion-builder' ), 'description' => esc_attr__( 'Choose how the background image repeats.', 'fusion-builder' ), 'param_name' => 'background_repeat', 'value' => array( 'no-repeat' => esc_attr__( 'No Repeat', 'fusion-builder' ), 'repeat' => esc_attr__( 'Repeat Vertically and Horizontally', 'fusion-builder' ), 'repeat-x' => esc_attr__( 'Repeat Horizontally', 'fusion-builder' ), 'repeat-y' => esc_attr__( 'Repeat Vertically', 'fusion-builder' ), ), 'default' => 'no-repeat', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'background_image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Fading Animation', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to have the background image fade and blur on scroll. WARNING: Only works for images.', 'fusion-builder' ), 'param_name' => 'fade', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'no', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'background_image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'select', 'heading' => esc_attr__( 'Background Parallax', 'fusion-builder' ), 'description' => esc_attr__( 'Choose how the background image scrolls and responds. This does not work for videos and must be set to "No Parallax" for the video to show.', 'fusion-builder' ), 'param_name' => 'background_parallax', 'value' => array( 'none' => esc_attr__( 'No Parallax (no effects)', 'fusion-builder' ), 'fixed' => esc_attr__( 'Fixed (fixed on desktop, non-fixed on mobile)', 'fusion-builder' ), 'up' => esc_attr__( 'Up (moves up on desktop and mobile)', 'fusion-builder' ), 'down' => esc_attr__( 'Down (moves down on desktop and mobile)', 'fusion-builder' ), 'left' => esc_attr__( 'Left (moves left on desktop and mobile)', 'fusion-builder' ), 'right' => esc_attr__( 'Right (moves right on desktop and mobile)', 'fusion-builder' ), ), 'default' => 'none', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'background_image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Enable Parallax on Mobile', 'fusion-builder' ), 'description' => esc_attr__( 'Works for up/down/left/right only. Parallax effects would most probably cause slowdowns when your site is viewed in mobile devices. If the device width is less than 980 pixels, then it is assumed that the site is being viewed in a mobile device.', 'fusion-builder' ), 'param_name' => 'enable_mobile', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'no', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'background_image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'range', 'heading' => esc_attr__( 'Parallax Speed', 'fusion-builder' ), 'description' => esc_attr__( 'The movement speed, value should be between 0.1 and 1.0. A lower number means slower scrolling speed. Higher scrolling speeds will enlarge the image more.', 'fusion-builder' ), 'param_name' => 'parallax_speed', 'value' => '0.3', 'min' => '0', 'max' => '1', 'step' => '0.1', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'background_image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'uploadfile', 'heading' => esc_attr__( 'Video MP4 Upload', 'fusion-builder' ), 'description' => esc_attr__( 'Video must be in a 16:9 aspect ratio. Add your WebM video file. WebM and MP4 format must be included to render your video with cross browser compatibility. OGV is optional.', 'fusion-builder' ), 'param_name' => 'video_mp4', 'value' => '', 'group' => esc_attr__( 'Background', 'fusion-builder' ), ), array( 'type' => 'uploadfile', 'heading' => esc_attr__( 'Video WebM Upload', 'fusion-builder' ), 'description' => esc_attr__( 'Video must be in a 16:9 aspect ratio. Add your WebM video file. WebM and MP4 format must be included to render your video with cross browser compatibility. OGV is optional.', 'fusion-builder' ), 'param_name' => 'video_webm', 'value' => '', 'group' => esc_attr__( 'Background', 'fusion-builder' ), ), array( 'type' => 'uploadfile', 'heading' => esc_attr__( 'Video OGV Upload', 'fusion-builder' ), 'description' => esc_attr__( 'Add your OGV video file. This is optional.', 'fusion-builder' ), 'param_name' => 'video_ogv', 'value' => '', 'group' => esc_attr__( 'Background', 'fusion-builder' ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'YouTube/Vimeo Video URL or ID', 'fusion-builder' ), 'description' => esc_attr__( "Enter the URL to the video or the video ID of your YouTube or Vimeo video you want to use as your background. If your URL isn't showing a video, try inputting the video ID instead. Ads will show up in the video if it has them.", 'fusion-builder' ), 'param_name' => 'video_url', 'value' => '', 'group' => esc_attr__( 'Background', 'fusion-builder' ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Video Aspect Ratio', 'fusion-builder' ), 'description' => esc_attr__( 'The video will be resized to maintain this aspect ratio, this is to prevent the video from showing any black bars. Enter an aspect ratio here such as: "16:9", "4:3" or "16:10". The default is "16:9".', 'fusion-builder' ), 'param_name' => 'video_aspect_ratio', 'value' => '16:9', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'or' => true, 'dependency' => array( array( 'element' => 'video_mp4', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_ogv', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_webm', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_url', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Loop Video', 'fusion-builder' ), 'param_name' => 'video_loop', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'yes', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'or' => true, 'dependency' => array( array( 'element' => 'video_mp4', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_ogv', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_webm', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_url', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Mute Video', 'fusion-builder' ), 'description' => esc_attr__( 'IMPORTANT: In some modern browsers, videos with sound won\'t be auto played, and thus won\'t show as container background when not muted.', 'fusion-builder' ), 'param_name' => 'video_mute', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'yes', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'or' => true, 'dependency' => array( array( 'element' => 'video_mp4', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_ogv', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_webm', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_url', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'upload', 'heading' => esc_attr__( 'Video Preview Image', 'fusion-builder' ), 'description' => esc_attr__( 'IMPORTANT: This field must be used for self hosted videos. Self hosted videos do not work correctly on mobile devices. The preview image will be seen in place of your video on older browsers or mobile devices.', 'fusion-builder' ), 'param_name' => 'video_preview_image', 'value' => '', 'group' => esc_attr__( 'Background', 'fusion-builder' ), 'or' => true, 'dependency' => array( array( 'element' => 'video_mp4', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_ogv', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_webm', 'value' => '', 'operator' => '!=', ), array( 'element' => 'video_url', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'range', 'heading' => esc_attr__( 'Container Border Size', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the border size of the container element. In pixels.', 'fusion-builder' ), 'param_name' => 'border_size', 'value' => '', 'min' => '0', 'max' => '50', 'default' => $fusion_settings->get( 'full_width_border_size' ), 'group' => esc_attr__( 'Design', 'fusion-builder' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Container Border Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the border color of the container element.', 'fusion-builder' ), 'param_name' => 'border_color', 'value' => '', 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'default' => $fusion_settings->get( 'full_width_border_color' ), 'dependency' => array( array( 'element' => 'border_size', 'value' => '0', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Border Style', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the border style.', 'fusion-builder' ), 'param_name' => 'border_style', 'value' => array( 'solid' => esc_attr__( 'Solid', 'fusion-builder' ), 'dashed' => esc_attr__( 'Dashed', 'fusion-builder' ), 'dotted' => esc_attr__( 'Dotted', 'fusion-builder' ), ), 'default' => 'solid', 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'border_size', 'value' => '0', 'operator' => '!=', ), ), ), array( 'type' => 'dimension', 'remove_from_atts' => true, 'heading' => esc_attr__( 'Margin', 'fusion-builder' ), 'param_name' => 'spacing', 'value' => array( 'margin_top' => '', 'margin_bottom' => '', ), 'description' => esc_attr__( 'Spacing above and below the section. Enter values including any valid CSS unit, ex: 4%.', 'fusion-builder' ), 'group' => esc_attr__( 'Design', 'fusion-builder' ), ), array( 'type' => 'dimension', 'remove_from_atts' => true, 'heading' => esc_attr__( 'Padding', 'fusion-builder' ), 'description' => esc_attr__( 'Enter values including any valid CSS unit, ex: 10px or 10%.', 'fusion-builder' ) . $default, 'param_name' => 'dimensions', 'value' => array( 'padding_top' => '', 'padding_right' => '', 'padding_bottom' => '', 'padding_left' => '', ), 'group' => esc_attr__( 'Design', 'fusion-builder' ), ), ), ) ); } add_action( 'fusion_builder_before_init', 'fusion_builder_add_section' );
[+]
..
[-] fusion-woo-shortcodes.php
[edit]
[-] fusion-fontawesome.php
[edit]
[-] fusion-youtube.php
[edit]
[-] fusion-countdown.php
[edit]
[-] fusion-tabs.php
[edit]
[-] fusion-counters-circle.php
[edit]
[-] fusion-table.php
[edit]
[-] fusion-modal.php
[edit]
[-] fusion-tooltip.php
[edit]
[-] fusion-text.php
[edit]
[-] fusion-flip-boxes.php
[edit]
[+]
js
[-] fusion-gallery.php
[edit]
[-] fusion-code-block.php
[edit]
[-] fusion-progress.php
[edit]
[-] fusion-row-inner.php
[edit]
[-] fusion-user-login.php
[edit]
[-] fusion-separator.php
[edit]
[-] fusion-syntax-highlighter.php
[edit]
[-] fusion-image-carousel.php
[edit]
[-] fusion-one-page-link.php
[edit]
[-] fusion-slider.php
[edit]
[-] fusion-pricing-table.php
[edit]
[-] fusion-menu-anchor.php
[edit]
[-] fusion-tagline.php
[edit]
[-] fusion-google-map.php
[edit]
[-] fusion-testimonials.php
[edit]
[-] fusion-dropcap.php
[edit]
[-] fusion-image.php
[edit]
[-] fusion-highlight.php
[edit]
[-] fusion-woo-product-slider.php
[edit]
[-] fusion-person.php
[edit]
[-] fusion-convertplus.php
[edit]
[-] fusion-woo-featured-products-slider.php
[edit]
[-] fusion-popover.php
[edit]
[-] fusion-lightbox.php
[edit]
[-] fusion-checklist.php
[edit]
[-] fusion-toggle.php
[edit]
[-] fusion-sharingbox.php
[edit]
[-] fusion-nextpage.php
[edit]
[-] fusion-column-inner.php
[edit]
[-] fusion-soundcloud.php
[edit]
[-] fusion-post-slider.php
[edit]
[-] fusion-social-links.php
[edit]
[-] fusion-widget-area.php
[edit]
[-] fusion-column.php
[edit]
[-] fusion-vimeo.php
[edit]
[-] fusion-events.php
[edit]
[-] fusion-content-boxes.php
[edit]
[-] fusion-counters-box.php
[edit]
[-] fusion-global.php
[edit]
[-] fusion-revolution-slider.php
[edit]
[-] fusion-container.php
[edit]
[-] fusion-recent-posts.php
[edit]
[-] fusion-row.php
[edit]
[-] fusion-blog.php
[edit]
[-] fusion-title.php
[edit]
[-] fusion-image-before-after.php
[edit]
[-] fusion-alert.php
[edit]
[-] fusion-button.php
[edit]
[-] fusion-section-separator.php
[edit]
[-] fusion-layer-slider.php
[edit]
[-] fusion-blank-page.php
[edit]
[-] fusion-chart.php
[edit]