PATH:
home
/
letacommog
/
lesfinessaveurs
/
wp-content
/
plugins
/
fusion-builder
/
shortcodes
<?php if ( fusion_is_element_enabled( 'fusion_text' ) ) { if ( ! class_exists( 'FusionSC_FusionText' ) ) { /** * Shortcode class. * * @package fusion-builder * @since 1.0 */ class FusionSC_FusionText extends Fusion_Element { /** * 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_text-element-wrapper', array( $this, 'wrapper_attr' ) ); add_shortcode( 'fusion_text', array( $this, 'render' ) ); add_filter( 'fusion_text_content', 'shortcode_unautop' ); add_filter( 'fusion_text_content', 'do_shortcode' ); } /** * 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( $args, $content = '' ) { global $fusion_settings; if ( ! $fusion_settings ) { $fusion_settings = Fusion_Settings::get_instance(); } $defaults = FusionBuilder::set_shortcode_defaults( array( 'class' => '', 'columns' => $fusion_settings->get( 'text_columns' ), 'column_min_width' => $fusion_settings->get( 'text_column_min_width' ), 'column_spacing' => $fusion_settings->get( 'text_column_spacing' ), 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), 'id' => '', 'rule_color' => $fusion_settings->get( 'text_rule_color' ), 'rule_size' => $fusion_settings->get( 'text_rule_size' ), 'rule_style' => $fusion_settings->get( 'text_rule_style' ), ), $args, 'fusion_text' ); $this->args = $defaults; if ( 'default' === $this->args['rule_style'] ) { $this->args['rule_style'] = $fusion_settings->get( 'text_rule_style' ); } $html = '<div ' . FusionBuilder::attributes( 'text-element-wrapper' ) . '>' . wpautop( $content, false ) . '</div>'; return apply_filters( 'fusion_text_content', $html, $content ); } /** * Builds the attributes array. * * @access public * @since 1.5 * @return array */ public function wrapper_attr() { $attr = array( 'class' => 'fusion-text', 'style' => '', ); // Only add styling if more than one column is used. if ( 1 < $this->args['columns'] ) { $attr['class'] .= ' fusion-text-split-columns fusion-text-columns-' . $this->args['columns']; $browser_prefixes = array( '-webkit-', '-moz-', '' ); foreach ( $browser_prefixes as $prefix ) { $attr['style'] .= ' ' . $prefix . 'column-count:' . $this->args['columns'] . ';'; if ( $this->args['column_spacing'] ) { $attr['style'] .= ' ' . $prefix . 'column-gap:' . FusionBuilder::validate_shortcode_attr_value( $this->args['column_spacing'], 'px' ) . ';'; } if ( $this->args['column_min_width'] ) { $attr['style'] .= ' ' . $prefix . 'column-width:' . FusionBuilder::validate_shortcode_attr_value( $this->args['column_min_width'], 'px' ) . ';'; } if ( 'none' !== $this->args['rule_style'] ) { $attr['style'] .= ' ' . $prefix . 'column-rule:' . $this->args['rule_size'] . 'px ' . $this->args['rule_style'] . ' ' . $this->args['rule_color'] . ';'; } } } $attr = fusion_builder_visibility_atts( $this->args['hide_on_mobile'], $attr ); if ( $this->args['class'] ) { $attr['class'] .= ' ' . $this->args['class']; } if ( $this->args['id'] ) { $attr['id'] = $this->args['id']; } return $attr; } /** * Adds settings to element options panel. * * @access public * @since 1.5 * @return array $sections Title settings. */ public function add_options() { global $fusion_settings; return array( 'text_shortcode_section' => array( 'label' => esc_html__( 'Text Element', 'fusion-builder' ), 'description' => '', 'id' => 'text_shortcode_section', 'type' => 'accordion', 'fields' => array( 'text_columns' => array( 'label' => esc_html__( 'Number Of Inline Columns', 'fusion-builder' ), 'description' => __( 'Set the number of columns the text should be broken into.<br />IMPORTANT: This feature is designed to be used for running text, images, dropcaps and other inline content. While some block elements will work, their usage is not recommended and others can easily break the layout.', 'fusion-builder' ), 'id' => 'text_columns', 'default' => '1', 'type' => 'slider', 'choices' => array( 'min' => '1', 'max' => '6', 'step' => '1', ), ), 'text_column_min_width' => array( 'label' => esc_html__( 'Column Min Width', 'fusion-builder' ), 'description' => esc_html__( 'Set the minimum width for each column, this allows your columns to gracefully break into the selected size as the screen width narrows. Leave this option empty if you wish to keep the same amount of columns from desktop to mobile.', 'fusion-builder' ), 'id' => 'text_column_min_width', 'default' => '100px', 'type' => 'dimension', 'required' => array( array( 'setting' => 'text_columns', 'operator' => '>', 'value' => '1', ), ), ), 'text_column_spacing' => array( 'label' => esc_html__( 'Column Spacing', 'fusion-builder' ), 'description' => esc_html__( 'Controls the column spacing between one column to the next.', 'fusion-builder' ), 'id' => 'text_column_spacing', 'default' => '2em', 'type' => 'dimension', 'required' => array( array( 'setting' => 'text_columns', 'operator' => '>', 'value' => '1', ), ), ), 'text_rule_style' => array( 'label' => esc_html__( 'Rule Style', 'fusion-builder' ), 'description' => esc_html__( 'Select the style of the vertical line between columns. Some of the styles depend on the rule size and color.', 'fusion-builder' ), 'id' => 'text_rule_style', 'default' => 'none', 'type' => 'select', 'choices' => array( 'none' => esc_html__( 'None', 'fusion-builder' ), 'solid' => esc_html__( 'Solid', 'fusion-builder' ), 'dashed' => esc_html__( 'Dashed', 'fusion-builder' ), 'dotted' => esc_html__( 'Dotted', 'fusion-builder' ), 'double' => esc_html__( 'Double', 'fusion-builder' ), 'groove' => esc_html__( 'Groove', 'fusion-builder' ), 'ridge' => esc_html__( 'Ridge', 'fusion-builder' ), ), 'required' => array( array( 'setting' => 'text_columns', 'operator' => '>', 'value' => '1', ), ), ), 'text_rule_size' => array( 'label' => esc_html__( 'Rule Size', 'fusion-builder' ), 'description' => esc_attr__( 'Sets the size of the vertical line between columns. The rule is rendered as "below" spacing and columns, so it can span over the gap between columns if it is larger than the column spacing amount.', 'fusion-builder' ), 'id' => 'text_rule_size', 'default' => '1', 'type' => 'slider', 'choices' => array( 'min' => '1', 'max' => '50', 'step' => '1', ), 'required' => array( array( 'setting' => 'text_columns', 'operator' => '>', 'value' => '1', ), array( 'setting' => 'text_rule_style', 'value' => 'none', 'operator' => '!=', ), ), ), 'text_rule_color' => array( 'label' => esc_html__( 'Rule Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the vertical line between columns.', 'fusion-builder' ), 'id' => 'text_rule_color', 'default' => $fusion_settings->get( 'sep_color' ), 'type' => 'color-alpha', 'required' => array( array( 'setting' => 'text_columns', 'operator' => '>', 'value' => '1', ), array( 'setting' => 'text_rule_style', 'value' => 'none', 'operator' => '!=', ), ), ), ), ), ); } } } new FusionSC_FusionText(); } /** * Map shortcode to Fusion Builder. * * @since 1.0 */ function fusion_element_text() { global $fusion_settings; fusion_builder_map( array( 'name' => esc_attr__( 'Text Block', 'fusion-builder' ), 'shortcode' => 'fusion_text', 'icon' => 'fusiona-font', 'preview' => FUSION_BUILDER_PLUGIN_DIR . 'inc/templates/previews/fusion-text-preview.php', 'preview_id' => 'fusion-builder-block-module-text-preview-template', 'allow_generator' => true, 'params' => array( array( 'type' => 'range', 'heading' => esc_attr__( 'Number Of Inline Columns', 'fusion-builder' ), 'description' => __( 'Set the number of columns the text should be broken into.<br />IMPORTANT: This feature is designed to be used for running text, images, dropcaps and other inline content. While some block elements will work, their usage is not recommended and others can easily break the layout.', 'fusion-builder' ), 'param_name' => 'columns', 'default' => $fusion_settings->get( 'text_columns' ), 'min' => '1', 'max' => '6', 'step' => '1', ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Column Min Width', 'fusion-builder' ), 'description' => esc_attr__( 'Set the minimum width for each column, this allows your columns to gracefully break into the selected size as the screen width narrows. Leave this option empty if you wish to keep the same amount of columns from desktop to mobile. Enter value including any valid CSS unit, ex: 200px.', 'fusion-builder' ), 'param_name' => 'column_min_width', 'value' => '', 'dependency' => array( array( 'element' => 'columns', 'value' => '1', 'operator' => '>', ), ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Column Spacing', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the column spacing between one column to the next. Enter value including any valid CSS unit besides % which does not work for inline columns, ex: 2em.', 'fusion-builder' ), 'param_name' => 'column_spacing', 'value' => '', 'dependency' => array( array( 'element' => 'columns', 'value' => '1', 'operator' => '>', ), ), ), array( 'type' => 'select', 'heading' => esc_attr__( 'Rule Style', 'fusion-builder' ), 'description' => esc_attr__( 'Select the style of the vertical line between columns. Some of the styles depend on the rule size and color.', 'fusion-builder' ), 'param_name' => 'rule_style', 'value' => array( 'default' => esc_html__( 'Default', 'fusion-builder' ), 'none' => esc_attr__( 'None', 'fusion-builder' ), 'solid' => esc_attr__( 'Solid', 'fusion-builder' ), 'dashed' => esc_attr__( 'Dashed', 'fusion-builder' ), 'dotted' => esc_attr__( 'Dotted', 'fusion-builder' ), 'double' => esc_attr__( 'Double', 'fusion-builder' ), 'groove' => esc_attr__( 'Groove', 'fusion-builder' ), 'ridge' => esc_attr__( 'Ridge', 'fusion-builder' ), ), 'default' => 'default', 'dependency' => array( array( 'element' => 'columns', 'value' => '1', 'operator' => '>', ), ), ), array( 'type' => 'range', 'heading' => esc_attr__( 'Rule Size', 'fusion-builder' ), 'description' => esc_attr__( 'Sets the size of the vertical line between columns. The rule is rendered as "below" spacing and columns, so it can span over the gap between columns if it is larger than the column spacing amount. In pixels.', 'fusion-builder' ), 'param_name' => 'rule_size', 'default' => $fusion_settings->get( 'text_rule_size' ), 'min' => '1', 'max' => '50', 'step' => '1', 'dependency' => array( array( 'element' => 'columns', 'value' => '1', 'operator' => '>', ), array( 'element' => 'rule_style', 'value' => 'none', 'operator' => '!=', ), ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Rule Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the color of the vertical line between columns.', 'fusion-builder' ), 'param_name' => 'rule_color', 'value' => '', 'default' => $fusion_settings->get( 'text_rule_color' ), 'dependency' => array( array( 'element' => 'columns', 'value' => '1', 'operator' => '>', ), array( 'element' => 'rule_style', 'value' => 'none', 'operator' => '!=', ), ), ), array( 'type' => 'tinymce', 'heading' => esc_attr__( 'Content', 'fusion-builder' ), 'description' => esc_attr__( 'Enter some content for this textblock.', 'fusion-builder' ), 'param_name' => 'element_content', 'value' => esc_attr__( 'Click edit button to change this text.', 'fusion-builder' ), 'placeholder' => true, ), 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_text' );
[+]
..
[-] 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]