PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
shortcodes
/
info-section
<?php if ( ! function_exists( 'webon_core_add_info_section_shortcode' ) ) { /** * Function that add shortcode into shortcodes list for registration * * @param array $shortcodes * * @return array */ function webon_core_add_info_section_shortcode( $shortcodes ) { $shortcodes[] = 'WebOnCoreInfoSectionShortcode'; return $shortcodes; } add_filter( 'webon_core_filter_register_shortcodes', 'webon_core_add_info_section_shortcode' ); } if ( class_exists( 'WebOnCoreShortcode' ) ) { class WebOnCoreInfoSectionShortcode extends WebOnCoreShortcode { public function __construct() { $this->set_layouts( apply_filters( 'webon_core_filter_info_section_layouts', array() ) ); $options_map = webon_core_get_variations_options_map( $this->get_layouts() ); $default_value = $options_map['default_value']; $this->set_extra_options( apply_filters( 'webon_core_filter_info_section_extra_options', array(), $default_value ) ); parent::__construct(); } public function map_shortcode() { $this->set_shortcode_path( WEBON_CORE_SHORTCODES_URL_PATH . '/info-section' ); $this->set_base( 'webon_core_info_section' ); $this->set_name( esc_html__( 'Info Section', 'webon-core' ) ); $this->set_description( esc_html__( 'Shortcode that adds info section element', 'webon-core' ) ); $this->set_category( esc_html__( 'WebOn Core', 'webon-core' ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'custom_class', 'title' => esc_html__( 'Custom Class', 'webon-core' ), ) ); $options_map = webon_core_get_variations_options_map( $this->get_layouts() ); $this->set_option( array( 'field_type' => 'select', 'name' => 'layout', 'title' => esc_html__( 'Layout', 'webon-core' ), 'options' => $this->get_layouts(), 'default_value' => $options_map['default_value'], 'visibility' => array( 'map_for_page_builder' => $options_map['visibility'] ) ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'tagline', 'title' => esc_html__( 'Tagline', 'webon-core' ) ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'tagline_tag', 'title' => esc_html__( 'Tagline Tag', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'title_tag' ), 'default_value' => 'h6', 'group' => esc_html__( 'Tagline Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'color', 'name' => 'tagline_color', 'title' => esc_html__( 'Tagline Color', 'webon-core' ), 'group' => esc_html__( 'Tagline Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'separator', 'title' => esc_html__( 'Separator', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'yes_no', false ), ) ); $this->set_option( array( 'field_type' => 'color', 'name' => 'separator_color', 'title' => esc_html__( 'Separator Color', 'webon-core' ), 'group' => esc_html__( 'Separator Style', 'webon-core' ), 'dependency' => array( 'show' => array( 'separator' => array( 'values' => 'yes', 'default_value' => '' ) ) ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'separator_width', 'title' => esc_html__( 'Separator Width (px or %)', 'webon-core' ), 'group' => esc_html__( 'Separator Style', 'webon-core' ), 'dependency' => array( 'show' => array( 'separator' => array( 'values' => 'yes', 'default_value' => '' ) ) ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'separator_margin_top', 'title' => esc_html__( 'Separator Margin Top', 'webon-core' ), 'group' => esc_html__( 'Separator Style', 'webon-core' ), 'dependency' => array( 'show' => array( 'separator' => array( 'values' => 'yes', 'default_value' => '' ) ) ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'title', 'title' => esc_html__( 'Main Title', 'webon-core' ) ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'title_tag', 'title' => esc_html__( 'Title Tag', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'title_tag' ), 'default_value' => 'h1', 'group' => esc_html__( 'Main Title Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'line_break_positions', 'title' => esc_html__( 'Positions of Line Break', 'webon-core' ), 'description' => esc_html__( 'Enter the positions of the words after which you would like to create a line break. Separate the positions with commas (e.g. if you would like the first, third, and fourth word to have a line break, you would enter "1,3,4")', 'webon-core' ), 'group' => esc_html__( 'Main Title Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'disable_title_break_words', 'title' => esc_html__( 'Disable Title Line Break', 'webon-core' ), 'description' => esc_html__( 'Enabling this option will disable title line breaks for screen size 1024 and lower', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'no_yes', false ), 'default_value' => 'no', 'group' => esc_html__( 'Main Title Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'title_margin_top', 'title' => esc_html__( 'Margin Top (px or %)', 'webon-core' ), 'group' => esc_html__( 'Main Title Style', 'webon-core' ) ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'title_margin_bottom', 'title' => esc_html__( 'Margin Bottom (px or %)', 'webon-core' ), 'group' => esc_html__( 'Main Title Style', 'webon-core' ) ) ); $this->set_option( array( 'field_type' => 'color', 'name' => 'title_color', 'title' => esc_html__( 'Color', 'webon-core' ), 'group' => esc_html__( 'Main Title Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'info_title', 'title' => esc_html__( 'Info Title', 'webon-core' ) ) ); $this->set_option( array( 'field_type' => 'textarea', 'name' => 'info_text', 'title' => esc_html__( 'Info Text', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'text_line_break_positions', 'title' => esc_html__( 'Positions of Text Line Break', 'webon-core' ), 'description' => esc_html__( 'Enter the positions of the words after which you would like to create a line break. Separate the positions with commas (e.g. if you would like the first, third, and fourth word to have a line break, you would enter "1,3,4")', 'webon-core' ), 'group' => esc_html__( 'Info Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'disable_text_break_words', 'title' => esc_html__( 'Disable Text Line Break', 'webon-core' ), 'description' => esc_html__( 'Enabling this option will disable text line breaks for screen size 1024 and lower', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'no_yes', false ), 'default_value' => 'no', 'group' => esc_html__( 'Info Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'info_link_text', 'title' => esc_html__( 'Info Link Text', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'info_link', 'title' => esc_html__( 'Info Link', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'info_link_target', 'title' => esc_html__( 'Info Link Target', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'link_target', false ) ) ); $this->set_option( array( 'field_type' => 'color', 'name' => 'info_title_color', 'title' => esc_html__( 'Title Color', 'webon-core' ), 'group' => esc_html__( 'Info Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'color', 'name' => 'info_text_color', 'title' => esc_html__( 'Text Color', 'webon-core' ), 'group' => esc_html__( 'Info Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'color', 'name' => 'info_button_color', 'title' => esc_html__( 'Button Color', 'webon-core' ), 'group' => esc_html__( 'Info Style', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'skin', 'title' => esc_html__( 'Light Skin', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'no_yes', false ) ) ); $this->map_extra_options(); } public static function call_shortcode( $params ) { $html = qode_framework_call_shortcode( 'webon_core_info_section', $params ); $html = str_replace( "\n", '', $html ); return $html; } public function render( $options, $content = null ) { parent::render( $options ); $atts = $this->get_atts(); $atts['holder_classes'] = $this->get_holder_classes( $atts ); $atts['title'] = $this->get_modified_title( $atts ); $atts['tagline_styles'] = $this->get_tagline_styles( $atts ); $atts['separator_styles'] = $this->get_separator_styles( $atts ); $atts['title_styles'] = $this->get_title_styles( $atts ); $atts['info_text'] = $this->get_modified_text( $atts ); $atts['info_title_styles'] = $this->get_info_title_styles( $atts ); $atts['info_text_styles'] = $this->get_info_text_styles( $atts ); $atts = apply_filters( 'webon_core_filter_info_section_variation_atts', $atts ); return webon_core_get_template_part( 'shortcodes/info-section', 'variations/' . $atts['layout'] . '/templates/' . $atts['layout'], '', $atts ); } private function get_holder_classes( $atts ) { $holder_classes = $this->init_holder_classes(); $holder_classes[] = 'qodef-info-section'; $holder_classes[] = ! empty ( $atts['layout'] ) ? 'qodef-layout--' . $atts['layout'] : ''; $holder_classes = apply_filters( 'webon_core_filter_info_section_variation_classes', $holder_classes, $atts ); $holder_classes[] = $atts['disable_title_break_words'] === 'yes' ? 'qodef-title-break--disabled' : ''; $holder_classes[] = $atts['disable_text_break_words'] === 'yes' ? 'qodef-text-break--disabled' : ''; $holder_classes[] = $atts['skin'] === 'yes' ? 'qodef-skin--light' : ''; return implode( ' ', $holder_classes ); } private function get_tagline_styles( $atts ) { $styles = array(); if ( ! empty( $atts['tagline_color'] ) ) { $styles[] = 'color: ' . $atts['tagline_color']; } return $styles; } private function get_separator_styles( $atts ) { $styles = array(); if ( ! empty( $atts['separator_color'] ) ) { $styles[] = 'background-color: ' . $atts['separator_color']; } if ( ! empty( $atts['separator_width'] ) ) { $styles[] = 'width: ' . $atts['separator_width']; } if ( $atts['separator_margin_top'] !== '' ) { if ( qode_framework_string_ends_with_space_units( $atts['separator_margin_top'] ) ) { $styles[] = 'margin-top: ' . $atts['separator_margin_top']; } else { $styles[] = 'margin-top: ' . intval( $atts['separator_margin_top'] ) . 'px'; } } return $styles; } private function get_modified_title( $atts ) { $title = $atts['title']; if ( ! empty( $title ) && ! empty( $atts['line_break_positions'] ) ) { $split_title = explode( ' ', $title ); $line_break_positions = explode( ',', str_replace( ' ', '', $atts['line_break_positions'] ) ); foreach ( $line_break_positions as $position ) { $position = intval( $position ); if ( isset( $split_title[ $position - 1 ] ) && ! empty( $split_title[ $position - 1 ] ) ) { $split_title[ $position - 1 ] = $split_title[ $position - 1 ] . '<br />'; } } $title = implode( ' ', $split_title ); } return $title; } private function get_title_styles( $atts ) { $styles = array(); if ( $atts['title_margin_top'] !== '' ) { if ( qode_framework_string_ends_with_space_units( $atts['title_margin_top'] ) ) { $styles[] = 'margin-top: ' . $atts['title_margin_top']; } else { $styles[] = 'margin-top: ' . intval( $atts['title_margin_top'] ) . 'px'; } } if ( $atts['title_margin_bottom'] !== '' ) { if ( qode_framework_string_ends_with_space_units( $atts['title_margin_bottom'] ) ) { $styles[] = 'margin-bottom: ' . $atts['title_margin_bottom']; } else { $styles[] = 'margin-bottom: ' . intval( $atts['title_margin_bottom'] ) . 'px'; } } if ( ! empty( $atts['title_color'] ) ) { $styles[] = 'color: ' . $atts['title_color']; } return $styles; } private function get_info_title_styles( $atts ) { $styles = array(); if ( ! empty( $atts['info_title_color'] ) ) { $styles[] = 'color: ' . $atts['info_title_color']; } return $styles; } private function get_info_text_styles( $atts ) { $styles = array(); if ( ! empty( $atts['info_text_color'] ) ) { $styles[] = 'color: ' . $atts['info_text_color']; } return $styles; } private function get_modified_text( $atts ) { $info_text = $atts['info_text']; if ( ! empty( $info_text ) && ! empty( $atts['text_line_break_positions'] ) ) { $split_text = explode( ' ', $info_text ); $line_break_positions = explode( ',', str_replace( ' ', '', $atts['text_line_break_positions'] ) ); foreach ( $line_break_positions as $position ) { $position = intval( $position ); if ( isset( $split_text[ $position - 1 ] ) && ! empty( $split_text[ $position - 1 ] ) ) { $split_text[ $position - 1 ] = $split_text[ $position - 1 ] . '<br />'; } } $info_text = implode( ' ', $split_text ); } return $info_text; } } }
[+]
..
[-] info-section-elementor.php
[edit]
[+]
variations
[-] info-section.php
[edit]
[+]
templates
[-] include.php
[edit]
[+]
assets