PATH:
home
/
letacommog
/
lesfinessaveurs
/
wp-content
/
plugins
/
fusion-builder
/
shortcodes
<?php if ( fusion_is_element_enabled( 'fusion_flip_boxes' ) ) { if ( ! class_exists( 'FusionSC_FlipBoxes' ) ) { /** * Shortcode class. * * @package fusion-builder * @since 1.0 */ class FusionSC_FlipBoxes extends Fusion_Element { /** * The flip-boxes counter. * * @access private * @since 1.0 * @var int */ private $flipbox_counter = 1; /** * Parent SC arguments. * * @access protected * @since 1.0 * @var array */ protected $parent_args; /** * Child SC arguments. * * @access protected * @since 1.0 * @var array */ protected $child_args; /** * Constructor. * * @access public * @since 1.0 */ public function __construct() { parent::__construct(); add_filter( 'fusion_attr_flip-boxes-shortcode', array( $this, 'parent_attr' ) ); add_shortcode( 'fusion_flip_boxes', array( $this, 'render_parent' ) ); add_filter( 'fusion_attr_flip-box-shortcode', array( $this, 'child_attr' ) ); add_filter( 'fusion_attr_flip-box-shortcode-front-box', array( $this, 'front_box_attr' ) ); add_filter( 'fusion_attr_flip-box-shortcode-back-box', array( $this, 'back_box_attr' ) ); add_filter( 'fusion_attr_flip-box-shortcode-heading-front', array( $this, 'heading_front_attr' ) ); add_filter( 'fusion_attr_flip-box-shortcode-heading-back', array( $this, 'heading_back_attr' ) ); add_filter( 'fusion_attr_flip-box-shortcode-grafix', array( $this, 'grafix_attr' ) ); add_filter( 'fusion_attr_flip-box-shortcode-icon', array( $this, 'icon_attr' ) ); add_filter( 'fusion_attr_flip-box-animation', array( $this, 'flip_box_animation_attr' ) ); add_shortcode( 'fusion_flip_box', array( $this, 'render_child' ) ); } /** * Render the shortcode * * @access public * @since 1.0 * @param array $args Shortcode parameters. * @param string $content Content between shortcode. * @return string HTML output. */ public function render_parent( $args, $content = '' ) { global $fusion_settings; $defaults = FusionBuilder::set_shortcode_defaults( array( 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), 'class' => '', 'id' => '', 'columns' => '1', 'circle' => '', 'circle_color' => $fusion_settings->get( 'icon_circle_color' ), 'circle_border_color' => $fusion_settings->get( 'icon_border_color' ), 'icon' => '', 'icon_color' => $fusion_settings->get( 'icon_color' ), 'icon_flip' => '', 'icon_rotate' => '', 'icon_spin' => '', 'image' => '', 'image_id' => '', 'image_width' => '35', 'image_height' => '35', ), $args, 'fusion_flip_boxes' ); extract( $defaults ); $this->parent_args = $defaults; if ( $this->parent_args['columns'] > 6 ) { $this->parent_args['columns'] = 6; } return '<div ' . FusionBuilder::attributes( 'flip-boxes-shortcode' ) . '>' . do_shortcode( $content ) . '</div><div ' . FusionBuilder::attributes( 'fusion-clearfix' ) . '></div>'; } /** * Builds the prent attributes array. * * @access public * @since 1.0 * @return array */ public function parent_attr() { $attr = fusion_builder_visibility_atts( $this->parent_args['hide_on_mobile'], array( 'class' => 'fusion-flip-boxes flip-boxes row fusion-columns-' . $this->parent_args['columns'], ) ); if ( $this->parent_args['class'] ) { $attr['class'] .= ' ' . $this->parent_args['class']; } if ( $this->parent_args['id'] ) { $attr['id'] = $this->parent_args['id']; } return $attr; } /** * Render the child shortcode * * @access public * @since 1.0 * @param array $args Shortcode parameters. * @param string $content Content between shortcode. * @return string HTML output. */ public function render_child( $args, $content = '' ) { global $fusion_library, $fusion_settings; $defaults = FusionBuilder::set_shortcode_defaults( array( 'class' => '', 'id' => '', 'background_color_front' => $fusion_settings->get( 'flip_boxes_front_bg' ), 'background_color_back' => $fusion_settings->get( 'flip_boxes_back_bg' ), 'border_color' => $fusion_settings->get( 'flip_boxes_border_color' ), 'border_radius' => $fusion_settings->get( 'flip_boxes_border_radius' ), 'border_size' => ( $fusion_settings->get( 'flip_boxes_border_size' ) ) ? $fusion_settings->get( 'flip_boxes_border_size' ) . 'px' : '', 'circle' => $this->parent_args['circle'], 'circle_color' => $this->parent_args['circle_color'], 'circle_border_color' => $this->parent_args['circle_border_color'], 'icon' => $this->parent_args['icon'], 'icon_color' => $this->parent_args['icon_color'], 'icon_flip' => $this->parent_args['icon_flip'], 'icon_rotate' => $this->parent_args['icon_rotate'], 'icon_spin' => $this->parent_args['icon_spin'], 'image' => $this->parent_args['image'], 'image_id' => $this->parent_args['image_id'], 'image_width' => $this->parent_args['image_width'], 'image_height' => $this->parent_args['image_height'], 'text_back_color' => $fusion_settings->get( 'flip_boxes_back_text' ), 'text_front' => '', 'text_front_color' => $fusion_settings->get( 'flip_boxes_front_text' ), 'title_front' => '', 'title_front_color' => $fusion_settings->get( 'flip_boxes_front_heading' ), 'title_back' => '', 'title_back_color' => $fusion_settings->get( 'flip_boxes_back_heading' ), 'animation_type' => '', 'animation_direction' => 'left', 'animation_speed' => '0.1', 'animation_offset' => $fusion_settings->get( 'animation_offset' ), ), $args, 'fusion_flip_box' ); // Case when image is set on parent element and icon on child element. if ( empty( $args['image'] ) && ! empty( $args['icon'] ) ) { $defaults['image'] = ''; } $defaults['border_size'] = FusionBuilder::validate_shortcode_attr_value( $defaults['border_size'], 'px' ); $defaults['border_radius'] = FusionBuilder::validate_shortcode_attr_value( $defaults['border_radius'], 'px' ); $defaults['image_width'] = FusionBuilder::validate_shortcode_attr_value( $defaults['image_width'], '' ); $defaults['image_height'] = FusionBuilder::validate_shortcode_attr_value( $defaults['image_height'], '' ); if ( 'round' == $defaults['border_radius'] ) { $defaults['border_radius'] = '50%'; } extract( $defaults ); $this->child_args = $defaults; $style = $icon_output = $title_output = $title_front_output = $title_back_output = ''; if ( $image && $image_width && $image_height ) { $image_data = $fusion_library->images->get_attachment_data_by_helper( $this->child_args['image_id'], $image ); if ( $image_data['url'] ) { $image = $image_data['url']; } $icon_output = '<img src="' . $image . '" width="' . $image_width . '" height="' . $image_height . '" alt="' . $image_data['alt'] . '" />'; } elseif ( $icon ) { $icon_output = '<i ' . FusionBuilder::attributes( 'flip-box-shortcode-icon' ) . '></i>'; } if ( $icon_output ) { $icon_output = '<div ' . FusionBuilder::attributes( 'flip-box-shortcode-grafix' ) . '>' . $icon_output . '</div>'; } if ( $title_front ) { $title_front_output = '<h2 ' . FusionBuilder::attributes( 'flip-box-shortcode-heading-front' ) . '>' . $title_front . '</h2>'; } if ( $title_back ) { $title_back_output = '<h3 ' . FusionBuilder::attributes( 'flip-box-shortcode-heading-back' ) . '>' . $title_back . '</h3>'; } $front_inner = '<div ' . FusionBuilder::attributes( 'flip-box-front-inner' ) . '>' . $icon_output . $title_front_output . $text_front . '</div>'; $back_inner = '<div ' . FusionBuilder::attributes( 'flip-box-back-inner' ) . '>' . $title_back_output . do_shortcode( $content ) . '</div>'; $front = '<div ' . FusionBuilder::attributes( 'flip-box-shortcode-front-box' ) . '>' . $front_inner . '</div>'; $back = '<div ' . FusionBuilder::attributes( 'flip-box-shortcode-back-box' ) . '>' . $back_inner . '</div>'; $html = '<div ' . FusionBuilder::attributes( 'flip-box-shortcode' ) . '>'; $html .= '<div ' . FusionBuilder::attributes( 'flip-box-animation' ) . '>'; $html .= '<div ' . FusionBuilder::attributes( 'flip-box-inner-wrapper' ) . '>'; $html .= $front . $back; $html .= '</div></div></div>'; $this->flipbox_counter++; return $html; } /** * Builds the child attributes array. * * @access public * @since 1.0 * @return array */ public function child_attr() { $columns = 1; if ( $this->parent_args['columns'] && ! empty( $this->parent_args['columns'] ) ) { $columns = 12 / $this->parent_args['columns']; } $attr = array( 'class' => 'fusion-flip-box-wrapper fusion-column col-lg-' . $columns . ' col-md-' . $columns . ' col-sm-' . $columns, ); if ( '5' == $this->parent_args['columns'] ) { $attr['class'] = 'fusion-flip-box-wrapper col-lg-2 col-md-2 col-sm-2'; } if ( $this->child_args['class'] ) { $attr['class'] .= ' ' . $this->child_args['class']; } if ( $this->child_args['id'] ) { $attr['id'] = $this->child_args['id']; } return $attr; } /** * Builds the animations attributes array. * * @access public * @since 1.5 * @return array */ public function flip_box_animation_attr() { $attr = array( 'class' => 'fusion-flip-box', ); if ( $this->child_args['animation_type'] ) { $animations = FusionBuilder::animations( array( 'type' => $this->child_args['animation_type'], 'direction' => $this->child_args['animation_direction'], 'speed' => $this->child_args['animation_speed'], 'offset' => $this->child_args['animation_offset'], ) ); $attr = array_merge( $attr, $animations ); $attr['class'] .= ' ' . $attr['animation_class']; unset( $attr['animation_class'] ); } return $attr; } /** * Builds the front-box attributes array. * * @access public * @since 1.0 * @return array */ public function front_box_attr() { $attr = array( 'class' => 'flip-box-front', ); if ( $this->child_args['background_color_front'] ) { $attr['style'] = 'background-color:' . $this->child_args['background_color_front'] . ';'; } if ( $this->child_args['border_color'] ) { $attr['style'] .= 'border-color:' . $this->child_args['border_color'] . ';'; } if ( $this->child_args['border_radius'] ) { $attr['style'] .= 'border-radius:' . $this->child_args['border_radius'] . ';'; } if ( $this->child_args['border_size'] ) { $attr['style'] .= 'border-style:solid;border-width:' . $this->child_args['border_size'] . ';'; } if ( $this->child_args['text_front_color'] ) { $attr['style'] .= 'color:' . $this->child_args['text_front_color'] . ';'; } return $attr; } /** * Builds the back-box attributes array. * * @access public * @since 1.0 * @return array */ public function back_box_attr() { $attr = array( 'class' => 'flip-box-back', ); if ( $this->child_args['background_color_back'] ) { $attr['style'] = 'background-color:' . $this->child_args['background_color_back'] . ';'; } if ( $this->child_args['border_color'] ) { $attr['style'] .= 'border-color:' . $this->child_args['border_color'] . ';'; } if ( $this->child_args['border_radius'] ) { $attr['style'] .= 'border-radius:' . $this->child_args['border_radius'] . ';'; } if ( $this->child_args['border_size'] ) { $attr['style'] .= 'border-style:solid;border-width:' . $this->child_args['border_size'] . ';'; } if ( $this->child_args['text_back_color'] ) { $attr['style'] .= 'color:' . $this->child_args['text_back_color'] . ';'; } return $attr; } /** * Builds the "grafix" attributes array. * * @access public * @since 1.0 * @return array */ public function grafix_attr() { $attr = array( 'class' => 'flip-box-grafix', ); if ( ! $this->child_args['image'] ) { if ( 'yes' == $this->child_args['circle'] ) { $attr['class'] .= ' flip-box-circle'; if ( $this->child_args['circle_color'] ) { $attr['style'] = 'background-color:' . $this->child_args['circle_color'] . ';'; } if ( $this->child_args['circle_border_color'] ) { $attr['style'] .= 'border-color:' . $this->child_args['circle_border_color'] . ';'; } } else { $attr['class'] .= ' flip-box-no-circle'; } } else { $attr['class'] .= ' flip-box-image'; } return $attr; } /** * Builds the icon attributes array. * * @access public * @since 1.0 * @return array */ public function icon_attr() { $attr = array(); if ( $this->child_args['image'] ) { $attr['class'] = 'image'; } elseif ( $this->child_args['icon'] ) { $attr['class'] = FusionBuilder::font_awesome_name_handler( $this->child_args['icon'] ); } if ( $this->child_args['icon_color'] ) { $attr['style'] = 'color:' . $this->child_args['icon_color'] . ';'; } if ( $this->child_args['icon_flip'] && 'none' !== $this->child_args['icon_flip'] ) { $attr['class'] .= ' fa-flip-' . $this->child_args['icon_flip']; } if ( $this->child_args['icon_rotate'] && 'none' !== $this->child_args['icon_rotate'] ) { $attr['class'] .= ' fa-rotate-' . $this->child_args['icon_rotate']; } if ( 'yes' == $this->child_args['icon_spin'] && 'none' !== $this->child_args['icon_spin'] ) { $attr['class'] .= ' fa-spin'; } return $attr; } /** * Builds the heading-front attributes array. * * @access public * @since 1.0 * @return array */ public function heading_front_attr() { $attr = array( 'class' => 'flip-box-heading', ); if ( ! $this->child_args['text_front'] ) { $attr['class'] .= ' without-text'; } if ( $this->child_args['title_front_color'] ) { $attr['style'] = 'color:' . $this->child_args['title_front_color'] . ';'; } return $attr; } /** * Builds the heading-back attributes array. * * @access public * @since 1.0 * @return array */ public function heading_back_attr() { $attr = array( 'class' => 'flip-box-heading-back', ); if ( $this->child_args['title_back_color'] ) { $attr['style'] = 'color:' . $this->child_args['title_back_color'] . ';'; } return $attr; } /** * Adds settings to element options panel. * * @access public * @since 1.1 * @return array $sections Flip Boxes settings. */ public function add_options() { return array( 'flip_boxes_shortcode_section' => array( 'label' => esc_html__( 'Flip Boxes Element', 'fusion-builder' ), 'description' => '', 'id' => 'flipb_shortcode_section', 'type' => 'accordion', 'fields' => array( 'flip_boxes_front_bg' => array( 'label' => esc_html__( 'Flip Box Background Color Frontside', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the frontside background.', 'fusion-builder' ), 'id' => 'flip_boxes_front_bg', 'default' => '#f6f6f6', 'type' => 'color-alpha', ), 'flip_boxes_front_heading' => array( 'label' => esc_html__( 'Flip Box Heading Color Frontside', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the frontside heading.', 'fusion-builder' ), 'id' => 'flip_boxes_front_heading', 'default' => '#333333', 'type' => 'color-alpha', ), 'flip_boxes_front_text' => array( 'label' => esc_html__( 'Flip Box Text Color Frontside', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the frontside text.', 'fusion-builder' ), 'id' => 'flip_boxes_front_text', 'default' => '#747474', 'type' => 'color-alpha', ), 'flip_boxes_back_bg' => array( 'label' => esc_html__( 'Flip Box Background Color Backside', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the backside background.', 'fusion-builder' ), 'id' => 'flip_boxes_back_bg', 'default' => '#a0ce4e', 'type' => 'color-alpha', ), 'flip_boxes_back_heading' => array( 'label' => esc_html__( 'Flip Box Heading Color Backside', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the backside heading.', 'fusion-builder' ), 'id' => 'flip_boxes_back_heading', 'default' => '#eeeded', 'type' => 'color-alpha', ), 'flip_boxes_back_text' => array( 'label' => esc_html__( 'Flip Box Text Color Backside', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the backside text.', 'fusion-builder' ), 'id' => 'flip_boxes_back_text', 'default' => '#ffffff', 'type' => 'color-alpha', ), 'flip_boxes_border_size' => array( 'label' => esc_html__( 'Flip Box Border Size', 'fusion-builder' ), 'description' => esc_html__( 'Controls the border size of the flip box background.', 'fusion-builder' ), 'id' => 'flip_boxes_border_size', 'default' => '1', 'type' => 'slider', 'choices' => array( 'min' => '0', 'max' => '50', 'step' => '1', ), ), 'flip_boxes_border_color' => array( 'label' => esc_html__( 'Flip Box Border Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the border color of flip box background.', 'fusion-builder' ), 'id' => 'flip_boxes_border_color', 'default' => 'rgba(0,0,0,0)', 'type' => 'color-alpha', ), 'flip_boxes_border_radius' => array( 'label' => esc_html__( 'Flip Box Border Radius', 'fusion-builder' ), 'description' => esc_html__( 'Controls the border radius of the flip box background.', 'fusion-builder' ), 'id' => 'flip_boxes_border_radius', 'default' => '4px', 'type' => 'dimension', 'choices' => array( 'px', '%', 'em' ), ), ), ), ); } /** * Sets the necessary scripts. * * @access public * @since 1.1 * @return void */ public function add_scripts() { Fusion_Dynamic_JS::enqueue_script( 'fusion-flip-boxes', FusionBuilder::$js_folder_url . '/general/fusion-flip-boxes.js', FusionBuilder::$js_folder_path . '/general/fusion-flip-boxes.js', array( 'jquery', 'fusion-animations' ), '1', true ); } } } new FusionSC_FlipBoxes(); } /** * Map shortcode to Fusion Builder * * @since 1.0 */ function fusion_element_flip_boxes() { global $fusion_settings; if ( ! $fusion_settings ) { $fusion_settings = Fusion_Settings::get_instance(); } fusion_builder_map( array( 'name' => esc_attr__( 'Flip Boxes', 'fusion-builder' ), 'shortcode' => 'fusion_flip_boxes', 'multi' => 'multi_element_parent', 'element_child' => 'fusion_flip_box', 'icon' => 'fusiona-loop-alt2', 'preview' => FUSION_BUILDER_PLUGIN_DIR . 'inc/templates/previews/fusion-flipboxes-preview.php', 'preview_id' => 'fusion-builder-block-module-flipboxes-preview-template', 'params' => array( array( 'type' => 'tinymce', 'heading' => esc_attr__( 'Content', 'fusion-builder' ), 'description' => esc_attr__( 'Enter some content for this contentbox.', 'fusion-builder' ), 'param_name' => 'element_content', 'value' => '[fusion_flip_box title_front="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" title_back="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" text_front="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" background_color_front="" title_front_color="" text_front_color="" background_color_back="" title_back_color="" text_back_color="" border_size="" border_color="" border_radius="" icon="" icon_color="" circle="" circle_color="" circle_border_color="" icon_flip="" icon_rotate="" icon_spin="no" image="" image_width="35" image_height="35" animation_offset="" animation_type="" animation_direction="left" animation_speed="0.1"]' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '[/fusion_flip_box]', ), array( 'type' => 'range', 'heading' => esc_attr__( 'Number of Columns', 'fusion-builder' ), 'description' => esc_attr__( 'Set the number of columns per row.', 'fusion-builder' ), 'param_name' => 'columns', 'value' => '1', 'min' => '1', 'max' => '6', 'step' => '1', ), array( 'type' => 'iconpicker', 'heading' => esc_attr__( 'Icon', 'fusion-builder' ), 'param_name' => 'icon', 'value' => '', 'description' => esc_attr__( 'Click an icon to select, click again to deselect.', 'fusion-builder' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Icon Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the icon. ', 'fusion-builder' ), 'param_name' => 'icon_color', 'value' => '', 'default' => $fusion_settings->get( 'icon_color' ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Icon Circle', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to use a circled background on the icon.', 'fusion-builder' ), 'param_name' => 'circle', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'yes', ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Icon Circle Background Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the circle. ', 'fusion-builder' ), 'param_name' => 'circle_color', 'value' => '', 'default' => $fusion_settings->get( 'icon_circle_color' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Icon Circle Border Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the circle border. ', 'fusion-builder' ), 'param_name' => 'circle_border_color', 'value' => '', 'default' => $fusion_settings->get( 'icon_border_color' ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Flip Icon', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to flip the icon.', 'fusion-builder' ), 'param_name' => 'icon_flip', 'value' => array( '' => esc_attr__( 'None', 'fusion-builder' ), 'horizontal' => esc_attr__( 'Horizontal', 'fusion-builder' ), 'vertical' => esc_attr__( 'Vertical', 'fusion-builder' ), ), 'default' => '', ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Rotate Icon', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to rotate the icon.', 'fusion-builder' ), 'param_name' => 'icon_rotate', 'value' => array( '' => esc_attr__( 'None', 'fusion-builder' ), '90' => '90', '180' => '180', '270' => '270', ), 'default' => '', ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Spinning Icon', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to let the icon spin.', 'fusion-builder' ), 'param_name' => 'icon_spin', 'value' => array( 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => 'no', ), array( 'type' => 'upload', 'heading' => esc_attr__( 'Icon Image', 'fusion-builder' ), 'description' => esc_attr__( 'To upload your own icon image, deselect the icon above and then upload your icon image.', 'fusion-builder' ), 'param_name' => 'image', 'value' => '', ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Icon Image ID', 'fusion-builder' ), 'description' => esc_attr__( 'Icon Image ID from Media Library.', 'fusion-builder' ), 'param_name' => 'image_id', 'value' => '', 'hidden' => true, ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Icon Image Width', 'fusion-builder' ), 'description' => esc_attr__( 'If using an icon image, specify the image width in pixels but do not add px, ex: 35.', 'fusion-builder' ), 'param_name' => 'image_width', 'value' => '', 'dependency' => array( array( 'element' => 'image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Icon Image Height', 'fusion-builder' ), 'description' => esc_attr__( 'If using an icon image, specify the image height in pixels but do not add px, ex: 35.', 'fusion-builder' ), 'param_name' => 'image_height', 'value' => '', 'dependency' => array( array( 'element' => 'image', 'value' => '', 'operator' => '!=', ), ), ), array( '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' ), ), 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' => '', ), 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' => '', ), ), ) ); } add_action( 'fusion_builder_before_init', 'fusion_element_flip_boxes' ); /** * Map shortcode to Fusion Builder */ function fusion_element_flip_box() { global $fusion_settings; fusion_builder_map( array( 'name' => esc_attr__( 'Flip Box', 'fusion-builder' ), 'description' => esc_attr__( 'Enter some content for this textblock', 'fusion-builder' ), 'shortcode' => 'fusion_flip_box', 'hide_from_builder' => true, 'allow_generator' => true, 'params' => array( array( 'type' => 'textfield', 'heading' => esc_attr__( 'Flip Box Frontside Heading', 'fusion-builder' ), 'description' => esc_attr__( 'Add a heading for the frontside of the flip box.', 'fusion-builder' ), 'param_name' => 'title_front', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Flip Box Backside Heading', 'fusion-builder' ), 'description' => esc_attr__( 'Add a heading for the backside of the flip box.', 'fusion-builder' ), 'param_name' => 'title_back', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Flip Box Frontside Content', 'fusion-builder' ), 'description' => esc_attr__( 'Add content for the frontside of the flip box.', 'fusion-builder' ), 'param_name' => 'text_front', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), array( 'type' => 'tinymce', 'heading' => esc_attr__( 'Flip Box Backside Content', 'fusion-builder' ), 'description' => esc_attr__( 'Add content for the backside of the flip box.', 'fusion-builder' ), 'param_name' => 'element_content', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Background Color Frontside', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the background color of the frontside. IMPORTANT: Flip boxes must have background colors to work correctly in all browsers.', 'fusion-builder' ), 'param_name' => 'background_color_front', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_front_bg' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Heading Color Frontside', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the heading color of the frontside. ', 'fusion-builder' ), 'param_name' => 'title_front_color', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_front_heading' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Text Color Frontside', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the text color of the frontside. ', 'fusion-builder' ), 'param_name' => 'text_front_color', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_front_text' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Background Color Backside', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the background color of the backside. IMPORTANT: Flip boxes must have background colors to work correctly in all browsers.', 'fusion-builder' ), 'param_name' => 'background_color_back', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_back_bg' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Heading Color Backside', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the heading color of the backside. ', 'fusion-builder' ), 'param_name' => 'title_back_color', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_back_heading' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Text Color Backside', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the text color of the backside. ', 'fusion-builder' ), 'param_name' => 'text_back_color', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_back_text' ), ), array( 'type' => 'range', 'heading' => esc_attr__( 'Border Size', 'fusion-builder' ), 'description' => esc_attr__( 'In pixels.', 'fusion-builder' ), 'param_name' => 'border_size', 'value' => '', 'min' => '0', 'max' => '50', 'step' => '1', 'default' => $fusion_settings->get( 'flip_boxes_border_size' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Border Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the border color. ', 'fusion-builder' ), 'param_name' => 'border_color', 'value' => '', 'default' => $fusion_settings->get( 'flip_boxes_border_color' ), 'dependency' => array( array( 'element' => 'border_size', 'value' => '0', 'operator' => '!=', ), ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Border Radius', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the flip box border radius. In pixels (px), ex: 1px, or "round". ', 'fusion-builder' ), 'param_name' => 'border_radius', 'value' => '', ), array( 'type' => 'iconpicker', 'heading' => esc_attr__( 'Icon', 'fusion-builder' ), 'param_name' => 'icon', 'value' => '', 'description' => esc_attr__( 'Click an icon to select, click again to deselect.', 'fusion-builder' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Icon Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the icon. ', 'fusion-builder' ), 'param_name' => 'icon_color', 'value' => '', 'default' => $fusion_settings->get( 'icon_color' ), 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Icon Circle', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to use a circled background on the icon.', 'fusion-builder' ), 'param_name' => 'circle', 'value' => array( '' => esc_attr__( 'Default', 'fusion-builder' ), 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => '', 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Icon Circle Background Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the circle. ', 'fusion-builder' ), 'param_name' => 'circle_color', 'value' => '', 'default' => $fusion_settings->get( 'icon_circle_color' ), 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), array( 'element' => 'circle', 'value' => 'yes', 'operator' => '==', ), ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Icon Circle Border Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the circle border. ', 'fusion-builder' ), 'param_name' => 'circle_border_color', 'value' => '', 'default' => $fusion_settings->get( 'icon_border_color' ), 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), array( 'element' => 'circle', 'value' => 'yes', 'operator' => '==', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Flip Icon', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to flip the icon.', 'fusion-builder' ), 'param_name' => 'icon_flip', 'value' => array( '' => esc_attr__( 'Default', 'fusion-builder' ), 'none' => esc_attr__( 'None', 'fusion-builder' ), 'horizontal' => esc_attr__( 'Horizontal', 'fusion-builder' ), 'vertical' => esc_attr__( 'Vertical', 'fusion-builder' ), ), 'default' => '', 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Rotate Icon', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to rotate the icon.', 'fusion-builder' ), 'param_name' => 'icon_rotate', 'value' => array( '' => esc_attr__( 'Default', 'fusion-builder' ), 'none' => esc_attr__( 'None', 'fusion-builder' ), '90' => '90', '180' => '180', '270' => '270', ), 'default' => '', 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Spinning Icon', 'fusion-builder' ), 'description' => esc_attr__( 'Choose to let the icon spin.', 'fusion-builder' ), 'param_name' => 'icon_spin', 'value' => array( '' => esc_attr__( 'Default', 'fusion-builder' ), 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => '', 'dependency' => array( array( 'element' => 'icon', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'upload', 'heading' => esc_attr__( 'Icon Image', 'fusion-builder' ), 'description' => esc_attr__( 'To upload your own icon image, deselect the icon above and then upload your icon image.', 'fusion-builder' ), 'param_name' => 'image', 'value' => '', ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Image ID', 'fusion-builder' ), 'description' => esc_attr__( 'Image ID from Media Library.', 'fusion-builder' ), 'param_name' => 'image_id', 'value' => '', 'hidden' => true, ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Icon Image Width', 'fusion-builder' ), 'description' => esc_attr__( 'If using an icon image, specify the image width in pixels but do not add px, ex: 35.', 'fusion-builder' ), 'param_name' => 'image_width', 'value' => '35', 'dependency' => array( array( 'element' => 'image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Icon Image Height', 'fusion-builder' ), 'description' => esc_attr__( 'If using an icon image, specify the image height in pixels but do not add px, ex: 35.', 'fusion-builder' ), 'param_name' => 'image_height', 'value' => '35', 'dependency' => array( array( 'element' => 'image', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'select', 'heading' => esc_attr__( 'Animation Type', 'fusion-builder' ), 'description' => esc_attr__( 'Select the type of animation to use on the element.', 'fusion-builder' ), 'param_name' => 'animation_type', 'value' => fusion_builder_available_animations(), 'default' => '', 'group' => esc_attr__( 'Animation', 'fusion-builder' ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Direction of Animation', 'fusion-builder' ), 'description' => esc_attr__( 'Select the incoming direction for the animation.', 'fusion-builder' ), 'param_name' => 'animation_direction', 'value' => array( 'down' => esc_attr__( 'Top', 'fusion-builder' ), 'right' => esc_attr__( 'Right', 'fusion-builder' ), 'up' => esc_attr__( 'Bottom', 'fusion-builder' ), 'left' => esc_attr__( 'Left', 'fusion-builder' ), 'static' => esc_attr__( 'Static', 'fusion-builder' ), ), 'default' => 'left', 'group' => esc_attr__( 'Animation', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'animation_type', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'range', 'heading' => esc_attr__( 'Speed of Animation', 'fusion-builder' ), 'description' => esc_attr__( 'Type in speed of animation in seconds (0.1 - 1).', 'fusion-builder' ), 'param_name' => 'animation_speed', 'min' => '0.1', 'max' => '1', 'step' => '0.1', 'value' => '0.1', 'group' => esc_attr__( 'Animation', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'animation_type', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'select', 'heading' => esc_attr__( 'Offset of Animation', 'fusion-builder' ), 'description' => esc_attr__( 'Controls when the animation should start.', 'fusion-builder' ), 'param_name' => 'animation_offset', 'value' => array( '' => esc_attr__( 'Default', 'fusion-builder' ), 'top-into-view' => esc_attr__( 'Top of element hits bottom of viewport', 'fusion-builder' ), 'top-mid-of-view' => esc_attr__( 'Top of element hits middle of viewport', 'fusion-builder' ), 'bottom-in-view' => esc_attr__( 'Bottom of element enters viewport', 'fusion-builder' ), ), 'default' => '', 'group' => esc_attr__( 'Animation', 'fusion-builder' ), 'dependency' => array( array( 'element' => 'animation_type', 'value' => '', 'operator' => '!=', ), ), ), ), ) ); } add_action( 'fusion_builder_before_init', 'fusion_element_flip_box' );
[+]
..
[-] 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]