Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Color Section
- * Shortcode creates a section with unique background image and colors for better content sepearation*/
- /******* see line 79 and 237ff ******/
- // Don't load directly
- if ( ! defined('ABSPATH') ) { die('-1'); }
- if ( ! class_exists( 'avia_sc_section' ) )
- {
- class avia_sc_section extends aviaShortcodeTemplate
- {
- static $section_count = 0;
- static $add_to_closing = '';
- static $close_overlay = '';
- /**
- * Create the config array for the shortcode button
- */
- function shortcode_insert_button()
- {
- $this->config['version'] = '1.0';
- $this->config['is_fullwidth'] = 'yes';
- $this->config['type'] = 'layout';
- $this->config['self_closing'] = 'no';
- $this->config['contains_text'] = 'no';
- $this->config['base_element'] = 'yes';
- $this->config['name'] = __( 'Color Section', 'avia_framework' );
- $this->config['icon'] = AviaBuilder::$path['imagesURL'] . 'sc-section.png';
- $this->config['tab'] = __( 'Layout Elements', 'avia_framework' );
- $this->config['order'] = 20;
- $this->config['shortcode'] = 'av_section';
- $this->config['html_renderer'] = false;
- $this->config['tinyMCE'] = array( 'disable' => 'true' );
- $this->config['tooltip'] = __('Creates a section with unique background image and colors', 'avia_framework' );
- $this->config['drag-level'] = 1;
- $this->config['drop-level'] = 1;
- $this->config['preview'] = false;
- $this->config['id_name'] = 'id';
- $this->config['id_show'] = 'always'; // we use original code - not $meta
- $this->config['aria_label'] = 'yes';
- }
- /**
- * Popup Elements
- *
- * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
- * opens a modal window that allows to edit the element properties
- *
- * @return void
- */
- function popup_elements()
- {
- $this->elements = array(
- array(
- 'type' => 'tab_container',
- 'nodescription' => true
- ),
- array(
- 'type' => 'tab',
- 'name' => __( 'Layout' , 'avia_framework' ),
- 'nodescription' => true
- ),
- array(
- 'type' => 'template',
- 'template_id' => 'toggle_container',
- 'templates_include' => array(
- $this->popup_key( 'layout_section_height' ),
- $this->popup_key( 'layout_section_dividers' ),
- $this->popup_key( 'layout_margin_padding' )
- ),
- 'nodescription' => true
- ),
- array(
- 'type' => 'tab_close',
- 'nodescription' => true
- ),
- array(
- 'type' => 'tab',
- 'name' => __( 'Styling', 'avia_framework' ),
- 'nodescription' => true
- ),
- array(
- 'type' => 'template',
- 'template_id' => 'toggle_container',
- 'templates_include' => array(
- $this->popup_key( 'styling_background_colors' ),
- $this->popup_key( 'styling_background_image' ),
- $this->popup_key( 'styling_background_video' ),
- $this->popup_key( 'styling_background_overlay' ),
- $this->popup_key( 'styling_borders' ),
- $this->popup_key( 'styling_arrow' )
- ),
- 'nodescription' => true
- ),
- array(
- 'type' => 'tab_close',
- 'nodescription' => true
- ),
- array(
- 'type' => 'tab',
- 'name' => __( 'Advanced', 'avia_framework' ),
- 'nodescription' => true
- ),
- array(
- 'type' => 'toggle_container',
- 'nodescription' => true
- ),
- array(
- 'type' => 'template',
- 'template_id' => 'screen_options_toggle',
- 'lockable' => true
- ),
- array(
- 'type' => 'template',
- 'template_id' => 'developer_options_toggle',
- 'args' => array( 'sc' => $this )
- ),
- array(
- 'type' => 'toggle_container_close',
- 'nodescription' => true
- ),
- array(
- 'type' => 'tab_close',
- 'nodescription' => true
- ),
- array(
- 'type' => 'template',
- 'template_id' => 'element_template_selection_tab',
- 'args' => array( 'sc' => $this )
- ),
- array(
- 'type' => 'tab_container_close',
- 'nodescription' => true
- ),
- array(
- 'id' => 'av_element_hidden_in_editor',
- 'type' => 'hidden',
- 'std' => '0'
- ),
- );
- }
- /**
- * Create and register templates for easier maintainance
- *
- * @since 4.6.4
- */
- protected function register_dynamic_templates()
- {
- global $avia_config;
- /**
- * Layout Tab
- * ===========
- */
- $c = array(
- array(
- 'name' => __( 'Section Minimum Height','avia_framework' ),
- 'id' => 'min_height',
- 'desc' => __( 'Define a minimum height for the section. Content within the section will be centered vertically within the section', 'avia_framework' ),
- 'type' => 'select',
- 'std' => '',
- 'lockable' => true,
- 'subtype' => array(
- __( 'No minimum height, use content within section to define Section height', 'avia_framework' ) => '',
- __( 'At least 100% of Browser Window height', 'avia_framework' ) => '100',
- __( 'At least 75% of Browser Window height', 'avia_framework' ) => '75',
- __( 'At least 50% of Browser Window height', 'avia_framework' ) => '50',
- __( 'At least 25% of Browser Window height', 'avia_framework' ) => '25',
- __( 'Custom height in % based on browser windows height', 'avia_framework' ) => 'percent',
- __( 'Custom height in pixel', 'avia_framework' ) => 'custom',
- )
- ),
- array(
- 'name' => __( 'Section minimum custom height in %', 'avia_framework' ),
- 'desc' => __( 'Define a minimum height for the section in % based on the browser windows height', 'avia_framework' ),
- 'id' => 'min_height_pc',
- 'type' => 'select',
- 'std' => '25',
- 'lockable' => true,
- 'required' => array( 'min_height', 'equals', 'percent' ),
- 'subtype' => AviaHtmlHelper::number_array( 1, 99, 1 )
- ),
- array(
- 'name' => __( 'Section custom height', 'avia_framework' ),
- 'desc' => __( 'Define a minimum height for the section. Use a pixel value. eg: 500px', 'avia_framework' ) ,
- 'id' => 'min_height_px',
- 'type' => 'input',
- 'std' => '500px',
- 'lockable' => true,
- 'required' => array( 'min_height', 'equals', 'custom' ),
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Section Height', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'layout_section_height' ), $template );
- // here comes the new divider project
- $c = array(
- array(
- 'name' => __( 'Top Divider', 'avia_framework' ),
- 'desc' => __( 'Insert a Divider on top of the color-section', 'avia_framework' ),
- 'id' => 'divider_on_top',
- 'type' => 'image',
- 'title' => __( 'Insert Image', 'avia_framework' ),
- 'button' => __( 'Insert', 'avia_framework' ),
- 'std' => ''
- ),
- array(
- 'name' => __( 'Bottom Divider', 'avia_framework' ),
- 'desc' => __( 'Insert a Divider on bottom of the color-section', 'avia_framework' ),
- 'id' => 'divider_on_bottom',
- 'type' => 'image',
- 'title' => __( 'Insert Image', 'avia_framework' ),
- 'button' => __( 'Insert', 'avia_framework' ),
- 'std' => ''
- ),
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Divider Image', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'layout_section_dividers' ), $template );
- // end of the arrays
- $c = array(
- array(
- 'name' => __( 'Section Padding', 'avia_framework' ),
- 'id' => 'padding',
- 'desc' => __( 'Define the sections top and bottom padding', 'avia_framework' ),
- 'type' => 'select',
- 'std' => 'default',
- 'lockable' => true,
- 'subtype' => array(
- __( 'No Padding', 'avia_framework' ) => 'no-padding',
- __( 'Small Padding', 'avia_framework' ) => 'small',
- __( 'Default Padding', 'avia_framework' ) => 'default',
- __( 'Large Padding', 'avia_framework' ) => 'large',
- __( 'Huge Padding', 'avia_framework' ) => 'huge',
- )
- ),
- array(
- 'name' => __( 'Custom top and bottom margin', 'avia_framework' ),
- 'desc' => __( 'If checked allows you to set a custom top and bottom margin. Otherwise the margin is calculated by the theme based on surrounding elements', 'avia_framework' ),
- 'id' => 'margin',
- 'type' => 'checkbox',
- 'std' => '',
- 'lockable' => true,
- ),
- array(
- 'name' => __( 'Custom top and bottom margin', 'avia_framework' ),
- 'desc' => __( 'Set a custom top or bottom margin. Both pixel and % based values are accepted. eg: 30px, 5%', 'avia_framework' ),
- 'id' => 'custom_margin',
- 'type' => 'multi_input',
- 'sync' => true,
- 'std' => '0px',
- 'lockable' => true,
- 'required' => array( 'margin', 'not','' ),
- 'multi' => array(
- 'top' => __( 'Margin-Top', 'avia_framework' ),
- 'bottom' => __( 'Margin-Bottom', 'avia_framework' ),
- )
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Margin and Padding', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'layout_margin_padding' ), $template );
- /**
- * Styling Tab
- * ===========
- */
- $c = array(
- array(
- 'name' => __( 'Section Colors', 'avia_framework' ),
- 'desc' => __( 'The section will use the color scheme you select. Color schemes are defined on your styling page', 'avia_framework' ) .
- '<br/><a target="_blank" href="' . admin_url( 'admin.php?page=avia#goto_styling' ) . '">' . __( '(Show Styling Page)', 'avia_framework' ) . '</a>',
- 'id' => 'color',
- 'type' => 'select',
- 'std' => 'main_color',
- 'lockable' => true,
- 'subtype' => array_flip( $avia_config['color_sets'] )
- ),
- array(
- 'name' => __( 'Background', 'avia_framework' ),
- 'desc' => __( 'Select the type of background for the column.', 'avia_framework' ),
- 'id' => 'background',
- 'type' => 'select',
- 'std' => 'bg_color',
- 'lockable' => true,
- 'subtype' => array(
- __( 'Background Color', 'avia_framework' ) => 'bg_color',
- __( 'Background Gradient', 'avia_framework' ) => 'bg_gradient',
- )
- ),
- array(
- 'name' => __( 'Custom Background Color', 'avia_framework' ),
- 'desc' => __( 'Select a custom background color for this cell here. Leave empty for default color', 'avia_framework' ),
- 'id' => 'custom_bg',
- 'type' => 'colorpicker',
- 'rgba' => true,
- 'std' => '',
- 'lockable' => true,
- 'required' => array( 'background', 'equals', 'bg_color' )
- ),
- array(
- 'name' => __( 'Background Gradient Color 1', 'avia_framework' ),
- 'desc' => __( 'Select the first color for the gradient.', 'avia_framework' ),
- 'id' => 'background_gradient_color1',
- 'type' => 'colorpicker',
- 'rgba' => true,
- 'std' => '',
- 'container_class' => 'av_third av_third_first',
- 'lockable' => true,
- 'required' => array( 'background', 'equals', 'bg_gradient' )
- ),
- array(
- 'name' => __( 'Background Gradient Color 2', 'avia_framework' ),
- 'desc' => __( 'Select the second color for the gradient.', 'avia_framework' ),
- 'id' => 'background_gradient_color2',
- 'type' => 'colorpicker',
- 'rgba' => true,
- 'std' => '',
- 'container_class' => 'av_third',
- 'lockable' => true,
- 'required' => array( 'background', 'equals', 'bg_gradient' )
- ),
- array(
- 'name' => __( 'Background Gradient Direction','avia_framework' ),
- 'desc' => __( 'Define the gradient direction', 'avia_framework' ),
- 'id' => 'background_gradient_direction',
- 'type' => 'select',
- 'std' => 'vertical',
- 'container_class' => 'av_third',
- 'lockable' => true,
- 'required' => array( 'background', 'equals', 'bg_gradient' ),
- 'subtype' => array(
- __( 'Vertical', 'avia_framework' ) => 'vertical',
- __( 'Horizontal', 'avia_framework' ) => 'horizontal',
- __( 'Radial', 'avia_framework' ) => 'radial',
- __( 'Diagonal Top Left to Bottom Right', 'avia_framework' ) => 'diagonal_tb',
- __( 'Diagonal Bottom Left to Top Right', 'avia_framework' ) => 'diagonal_bt',
- )
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Background Colors', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'styling_background_colors' ), $template );
- $c = array(
- array(
- 'name' => __( 'Custom Background Image', 'avia_framework' ),
- 'desc' => __( 'Either upload a new, or choose an existing image from your media library. Leave empty if you want to use the background image of the color scheme defined above', 'avia_framework' ),
- 'id' => 'src',
- 'type' => 'image',
- 'title' => __( 'Insert Image', 'avia_framework' ),
- 'button' => __( 'Insert', 'avia_framework' ),
- 'std' => '',
- 'lockable' => true,
- 'locked' => array( 'src', 'attachment', 'attachment_size' )
- ),
- array(
- 'name' => __( 'Background Attachment', 'avia_framework' ),
- 'desc' => __( 'Background can either scroll with the page, be fixed or scroll with a parallax motion', 'avia_framework' ),
- 'id' => 'attach',
- 'type' => 'select',
- 'std' => 'scroll',
- 'lockable' => true,
- 'required' => array( 'src', 'not', '' ),
- 'subtype' => array(
- __( 'Scroll', 'avia_framework' ) => 'scroll',
- __( 'Fixed', 'avia_framework' ) => 'fixed',
- __( 'Parallax', 'avia_framework' ) => 'parallax'
- )
- ),
- array(
- 'type' => 'template',
- 'template_id' => 'background_image_position',
- 'args' => array(
- 'id_pos' => 'position',
- 'id_repeat' => 'repeat'
- ),
- 'lockable' => true
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Background Image', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'styling_background_image' ), $template );
- $c = array(
- array(
- 'name' => __( 'Background Video', 'avia_framework' ),
- 'desc' => __( 'You can also place a video as background for your section. Enter the URL to the Video. Currently supported are Youtube, Vimeo and direct linking of web-video files (mp4, webm, ogv)', 'avia_framework' ) . '<br/><br/>' .
- __( 'Working examples Youtube & Vimeo:', 'avia_framework' ) . '<br/>
- <strong>http://vimeo.com/1084537</strong><br/>
- <strong>http://www.youtube.com/watch?v=5guMumPFBag</strong><br/><br/>',
- 'id' => 'video',
- 'type' => 'input',
- 'std' => '',
- 'lockable' => true
- ),
- array(
- 'name' => __( 'Video Aspect Ratio', 'avia_framework' ),
- 'desc' => __( 'In order to calculate the correct height and width for the video slide you need to enter a aspect ratio (width:height). usually: 16:9 or 4:3.', 'avia_framework' ) . '<br/>' . __( 'If left empty 16:9 will be used', 'avia_framework' ) ,
- 'id' => 'video_ratio',
- 'type' => 'input',
- 'std' => '16:9',
- 'lockable' => true,
- 'required' => array( 'video', 'not', '' ),
- ),
- array(
- 'name' => __( 'Hide video on Mobile Devices?', 'avia_framework' ),
- 'desc' => __( 'You can choose to hide the video entirely on Mobile devices and instead display the Section Background image', 'avia_framework' ) . '<br/><small>' . __( "Most mobile devices can't autoplay videos to prevent bandwidth problems for the user", 'avia_framework' ) . '</small>' ,
- 'id' => 'video_mobile_disabled',
- 'type' => 'checkbox',
- 'std' => '',
- 'lockable' => true,
- 'required' => array( 'video', 'not', '' ),
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Background Video', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'styling_background_video' ), $template );
- $c = array(
- array(
- 'name' => __( 'Enable Overlay?', 'avia_framework' ),
- 'desc' => __( 'Check if you want to display a transparent color and/or pattern overlay above your section background image/video', 'avia_framework' ),
- 'id' => 'overlay_enable',
- 'type' => 'checkbox',
- 'std' => '',
- 'lockable' => true,
- ),
- array(
- 'name' => __( 'Overlay Opacity', 'avia_framework' ),
- 'desc' => __( 'Set the opacity of your overlay: 0.1 is barely visible, 1.0 is opaque ', 'avia_framework' ),
- 'id' => 'overlay_opacity',
- 'type' => 'select',
- 'std' => '0.5',
- 'lockable' => true,
- 'required' => array( 'overlay_enable', 'not', '' ),
- 'subtype' => array(
- __( '0.1', 'avia_framework' ) => '0.1',
- __( '0.2', 'avia_framework' ) => '0.2',
- __( '0.3', 'avia_framework' ) => '0.3',
- __( '0.4', 'avia_framework' ) => '0.4',
- __( '0.5', 'avia_framework' ) => '0.5',
- __( '0.6', 'avia_framework' ) => '0.6',
- __( '0.7', 'avia_framework' ) => '0.7',
- __( '0.8', 'avia_framework' ) => '0.8',
- __( '0.9', 'avia_framework' ) => '0.9',
- __( '1.0', 'avia_framework' ) => '1',
- )
- ),
- array(
- 'name' => __( 'Overlay Color', 'avia_framework' ),
- 'desc' => __( 'Select a custom color for your overlay here. Leave empty if you want no color overlay', 'avia_framework' ),
- 'id' => 'overlay_color',
- 'type' => 'colorpicker',
- 'std' => '',
- 'lockable' => true,
- 'required' => array( 'overlay_enable', 'not', '' )
- ),
- array(
- 'name' => __( 'Background Image', 'avia_framework' ),
- 'desc' => __( 'Select an existing or upload a new background image', 'avia_framework' ),
- 'id' => 'overlay_pattern',
- 'type' => 'select',
- 'std' => '',
- 'folder' => 'images/background-images/',
- 'folderlabel' => '',
- 'group' => __( 'Select predefined pattern', 'avia_framework' ),
- 'exclude' => array( 'fullsize-', 'gradient' ),
- 'lockable' => true,
- 'required' => array( 'overlay_enable', 'not', '' ),
- 'subtype' => array(
- __( 'No Background Image', 'avia_framework' ) => '',
- __( 'Upload custom image', 'avia_framework' ) => 'custom'
- )
- ),
- array(
- 'name' => __( 'Custom Pattern', 'avia_framework' ),
- 'desc' => __( 'Upload your own seamless pattern', 'avia_framework' ),
- 'id' => 'overlay_custom_pattern',
- 'type' => 'image',
- 'fetch' => 'url',
- 'secondary_img' => true,
- 'title' => __( 'Insert Pattern', 'avia_framework' ),
- 'button' => __( 'Insert', 'avia_framework' ),
- 'std' => '',
- 'lockable' => true,
- 'required' => array( 'overlay_pattern', 'equals', 'custom' )
- ),
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Background Overlay', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'styling_background_overlay' ), $template );
- $c = array(
- array(
- 'name' => __( 'Section Top Border Styling', 'avia_framework' ),
- 'desc' => __( 'Choose a border styling for the top of your section', 'avia_framework' ),
- 'id' => 'shadow',
- 'type' => 'select',
- 'std' => 'no-border-styling',
- 'lockable' => true,
- 'subtype' => array(
- __( 'Display a simple 1px top border', 'avia_framework' ) => 'no-shadow',
- __( 'Display a small styling shadow at the top of the section', 'avia_framework' ) => 'shadow',
- __( 'No border styling', 'avia_framework' ) => 'no-border-styling',
- )
- ),
- array(
- 'name' => __( 'Section Bottom Border Styling', 'avia_framework' ),
- 'desc' => __( 'Choose a border styling for the bottom of your section', 'avia_framework' ),
- 'id' => 'bottom_border',
- 'type' => 'select',
- 'std' => 'no-border-styling',
- 'lockable' => true,
- 'subtype' => array(
- __( 'No border styling', 'avia_framework' ) => 'no-border-styling',
- __( 'Display a small arrow that points down to the next section', 'avia_framework' ) => 'border-extra-arrow-down',
- __( 'Diagonal section border', 'avia_framework' ) => 'border-extra-diagonal',
- )
- ),
- array(
- 'name' => __( 'Diagonal Border: Color', 'avia_framework' ),
- 'desc' => __( 'Select a custom background color for your Section border here.', 'avia_framework' ),
- 'id' => 'bottom_border_diagonal_color',
- 'type' => 'colorpicker',
- 'std' => '#333333',
- 'container_class' => 'av_third av_third_first',
- 'lockable' => true,
- 'required' => array( 'bottom_border', 'contains', 'diagonal' )
- ),
- array(
- 'name' => __( 'Diagonal Border: Direction','avia_framework' ),
- 'desc' => __( 'Set the direction of the diagonal border', 'avia_framework' ),
- 'id' => 'bottom_border_diagonal_direction',
- 'type' => 'select',
- 'std' => '',
- 'container_class' => 'av_third',
- 'lockable' => true,
- 'required' => array( 'bottom_border', 'contains', 'diagonal' ),
- 'subtype' => array(
- __( 'Slanting from left to right', 'avia_framework' ) => '',
- __( 'Slanting from right to left', 'avia_framework' ) => 'border-extra-diagonal-inverse'
- )
- ),
- array(
- 'name' => __( 'Diagonal Border Box Style', 'avia_framework' ),
- 'desc' => __( 'Set the style shadow of the border', 'avia_framework' ),
- 'id' => 'bottom_border_style',
- 'type' => 'select',
- 'std' => '',
- 'container_class' => 'av_third',
- 'lockable' => true,
- 'required' => array( 'bottom_border', 'contains', 'diagonal' ),
- 'subtype' => array(
- __( 'Minimal', 'avia_framework' ) => '',
- __( 'Box shadow', 'avia_framework' ) => 'diagonal-box-shadow'
- )
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Borders', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'styling_borders' ), $template );
- $c = array(
- array(
- 'name' => __( 'Display a scroll down arrow', 'avia_framework' ),
- 'desc' => __( 'Check if you want to show a button at the bottom of the section that takes the user to the next section by scrolling down', 'avia_framework' ) ,
- 'id' => 'scroll_down',
- 'type' => 'checkbox',
- 'std' => '',
- 'lockable' => true
- ),
- array(
- 'name' => __( 'Custom Arrow Color', 'avia_framework' ),
- 'desc' => __( 'Select a custom arrow color. Leave empty if you want to use the default arrow color and style', 'avia_framework' ),
- 'id' => 'custom_arrow_bg',
- 'type' => 'colorpicker',
- 'std' => '',
- 'lockable' => true,
- 'required' => array( 'scroll_down', 'not', '' ),
- )
- );
- $template = array(
- array(
- 'type' => 'template',
- 'template_id' => 'toggle',
- 'title' => __( 'Scroll Down Arrow', 'avia_framework' ),
- 'content' => $c
- ),
- );
- AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'styling_arrow' ), $template );
- }
- /**
- * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
- * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
- * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
- *
- *
- * @param array $params this array holds the default values for $content and $args.
- * @return $params the return array usually holds an innerHtml key that holds item specific markup.
- */
- function editor_element( $params )
- {
- $default = array();
- $locked = array();
- $attr = $params['args'];
- $content = $params['content'];
- Avia_Element_Templates()->set_locked_attributes( $attr, $this, $this->config['shortcode'], $default, $locked, $content );
- $args = $attr; // => extract( $params );
- $data = isset( $params['data'] ) && is_array( $params['data'] ) ? $params['data'] : array();
- $data_locked = array();
- $extraClass = isset( $args['element_template'] ) && $args['element_template'] > 0 ? ' element_template_selected' : ' no_element_template';
- $name = $this->config['shortcode'];
- $data['shortcodehandler'] = $this->config['shortcode'];
- $data['modal_title'] = $this->config['name'];
- $data['modal_ajax_hook'] = $this->config['shortcode'];
- $data['dragdrop-level'] = $this->config['drag-level'];
- $data['allowed-shortcodes'] = $this->config['shortcode'];
- $data['base_shortcode'] = $this->config['shortcode'];
- $data['element_title'] = $this->config['name'];
- $data['element_tooltip'] = $this->config['tooltip'];
- $data['preview'] = ! empty( $this->config['preview'] ) ? $this->config['preview'] : 0;
- $title_id = ! empty( $args['id'] ) ? ': ' . ucfirst( $args['id'] ) : '';
- foreach( $locked as $key => $value )
- {
- $data_locked[ 'locked_' . $key ] = $value;
- }
- // add background color or gradient to indicator
- $el_bg = '';
- if( empty( $args['background'] ) || ( $args['background'] == 'bg_color' ) )
- {
- $el_bg = ! empty( $args['custom_bg'] ) ? " background:{$args['custom_bg']};" : '';
- }
- else
- {
- if( $args['background_gradient_color1'] && $args['background_gradient_color2'] )
- {
- $el_bg = "background:linear-gradient({$args['background_gradient_color1']},{$args['background_gradient_color2']});";
- }
- }
- $hidden_el_active = ! empty( $args['av_element_hidden_in_editor'] ) ? 'av-layout-element-closed' : '';
- if( ! empty( $this->config['modal_on_load'] ) )
- {
- $data['modal_on_load'] = $this->config['modal_on_load'];
- }
- $data_locked['initial_el_bg'] = $el_bg;
- $data_locked['initial_layout_element_bg'] = $this->get_bg_string( $args );
- $dataString = AviaHelper::create_data_string( $data );
- $dataStringLocked = AviaHelper::create_data_string( $data_locked );
- $output = "<div class='avia_layout_section {$hidden_el_active} {$extraClass} avia_pop_class avia-no-visual-updates {$name} av_drag' {$dataString}>";
- $output .= '<div class="avia_data_locked_container" ' . $dataStringLocked . ' data-update_element_template="yes"></div>';
- $output .= "<div class='avia_sorthandle menu-item-handle'>";
- $output .= "<span class='avia-element-title'>";
- $output .= "<span class='avia-element-bg-color' style='{$el_bg}'></span>";
- $output .= $this->config['name'];
- $output .= "<span class='avia-element-title-id'>{$title_id}</span>";
- $output .= '</span>';
- // $output .= "<a class='avia-new-target' href='#new-target' title='" . __( 'Move Section','avia_framework' ) . "'>+</a>";
- $output .= "<a class='avia-delete' href='#delete' title='" . __( 'Delete Section', 'avia_framework' ) . "'>x</a>";
- $output .= "<a class='avia-toggle-visibility' href='#toggle' title='" . __( 'Show/Hide Section', 'avia_framework' ) . "'></a>";
- if( ! empty( $this->config['popup_editor'] ) )
- {
- $output .= "<a class='avia-edit-element' href='#edit-element' title='" . __( 'Edit Section', 'avia_framework' ) . "'>edit</a>";
- }
- $output .= "<a class='avia-save-element' href='#save-element' title='" . __( 'Save Element as Template','avia_framework' ) . "'>+</a>";
- $output .= " <a class='avia-clone' href='#clone' title='" . __( 'Clone Section', 'avia_framework' ) . "' >" . __( 'Clone Section', 'avia_framework' ) . '</a>';
- $output .= '</div>';
- $output .= "<div class='avia_inner_shortcode avia_connect_sort av_drop' data-dragdrop-level='{$this->config['drop-level']}'>";
- $output .= "<textarea data-name='text-shortcode' cols='20' rows='4'>" . ShortcodeHelper::create_shortcode_by_array( $name, $content, $params['args'] ) . '</textarea>';
- if( $content )
- {
- $content = $this->builder->do_shortcode_backend( $content );
- }
- $output .= $content;
- $output .= '</div>';
- $output .= "<div class='avia-layout-element-bg' style='{$data_locked['initial_layout_element_bg']}'></div>";
- $output .= "<a class='avia-layout-element-hidden' href='#'>" . __( 'Section content hidden. Click here to show it', 'avia_framework' ) . '</a>';
- $output .= '</div>';
- return $output;
- }
- /**
- * Frontend Shortcode Handler
- *
- * @param array $atts array of attributes
- * @param string $content text within enclosing form of shortcode element
- * @param string $shortcodename the shortcode found, when == callback name
- * @return string $output returns the modified html string
- */
- function shortcode_handler( $atts, $content = '', $shortcodename = '', $meta = '' )
- {
- global $avia_config;
- $default = array(
- 'src' => '',
- 'position' => 'top left',
- 'repeat' => 'no-repeat',
- 'attach' => 'scroll',
- 'color' => 'main_color',
- 'background' => '',
- 'custom_bg' => '',
- 'background_gradient_color1' => '',
- 'background_gradient_color2' => '',
- 'background_gradient_direction' => '',
- 'padding' => 'default' ,
- 'margin' => '',
- 'custom_margin' => '',
- 'shadow' => 'shadow',
- 'id' => '',
- 'min_height' => '',
- 'min_height_pc' => 25,
- 'min_height_px' => '',
- 'video' => '',
- 'video_ratio' =>' 16:9',
- 'video_mobile_disabled' =>'',
- 'custom_markup' => '',
- 'attachment' => '',
- 'attachment_size' => '',
- 'bottom_border' => '',
- 'overlay_enable' => '',
- 'overlay_opacity' => '',
- 'overlay_color' => '',
- 'overlay_pattern' => '',
- 'overlay_custom_pattern' => '',
- 'scroll_down' => '',
- 'bottom_border_diagonal_color' => '',
- 'bottom_border_diagonal_direction' => '',
- 'bottom_border_style' => '',
- 'custom_arrow_bg' => ''
- );
- // we skip $content override as we only allow styling of section to be locked
- $locked = array();
- Avia_Element_Templates()->set_locked_attributes( $atts, $this, $shortcodename, $default, $locked );
- Avia_Element_Templates()->add_template_class( $meta, $atts, $default );
- extract( AviaHelper::av_mobile_sizes( $atts ) ); //return $av_font_classes, $av_title_font_classes and $av_display_classes
- $atts = shortcode_atts( $default, $atts, $this->config['shortcode'] );
- if( 'percent' == $atts['min_height'] )
- {
- $atts['min_height'] = $atts['min_height_pc'];
- }
- extract( $atts );
- avia_sc_section::$section_count ++;
- $output = '';
- $class = "avia-section {$color} avia-section-{$padding} avia-{$shadow} ";
- $background = '';
- $src = '';
- $params = array();
- $params['id'] = AviaHelper::save_string( $id, '-', 'av_section_' . avia_sc_section::$section_count );
- $params['custom_markup'] = $meta['custom_markup'];
- $params['aria_label'] = $meta['aria_label'];
- $params['attach'] = '';
- if( ! empty( $attachment ) && ! empty( $attachment_size ) )
- {
- /**
- * Allows e.g. WPML to reroute to translated image
- */
- $posts = get_posts( array(
- 'include' => $attachment,
- 'post_status' => 'inherit',
- 'post_type' => 'attachment',
- 'post_mime_type' => 'image',
- 'order' => 'ASC',
- 'orderby' => 'post__in' )
- );
- if( is_array( $posts ) && ! empty( $posts ) )
- {
- $attachment_entry = $posts[0];
- $src = wp_get_attachment_image_src( $attachment_entry->ID, $attachment_size );
- $src = !empty($src[0]) ? $src[0] : '';
- }
- }
- else
- {
- $attachment = false;
- }
- // background gradient
- $gradient_val = '';
- if( $atts['background'] == 'bg_gradient' )
- {
- if ( $atts['background_gradient_color1'] && $atts['background_gradient_color2'])
- {
- switch ( $atts['background_gradient_direction'] )
- {
- case 'vertical':
- $gradient_val .= 'linear-gradient(';
- break;
- case 'horizontal':
- $gradient_val .= 'linear-gradient(to right,';
- break;
- case 'radial':
- $gradient_val .= 'radial-gradient(';
- break;
- case 'diagonal_tb':
- $gradient_val .= 'linear-gradient(to bottom right,';
- break;
- case 'diagonal_bt':
- $gradient_val .= 'linear-gradient(45deg,';
- break;
- }
- $gradient_val .= $atts['background_gradient_color1'].','.$atts['background_gradient_color2'].')';
- // Fallback background color for IE9
- if( $custom_bg == '' )
- {
- $background .= "background-color: {$atts['background_gradient_color1']};";
- }
- }
- }
- if( $custom_bg != '' )
- {
- $background .= "background-color: {$custom_bg}; ";
- }
- /*set background image*/
- if( $src != '' )
- {
- if( $repeat == 'stretch' )
- {
- $background .= 'background-repeat: no-repeat; ';
- $class .= ' avia-full-stretch';
- }
- else if( $repeat == 'contain' )
- {
- $background .= 'background-repeat: no-repeat; ';
- $class .= ' avia-full-contain';
- }
- else
- {
- $background .= "background-repeat: {$repeat}; ";
- }
- $background .= "background-image: url({$src})";
- if( $gradient_val !== '' )
- {
- $background .= ", {$gradient_val}";
- }
- $background .= ';';
- $background .= $attach == 'parallax' ? 'background-attachment: scroll; ' : "background-attachment: {$attach}; ";
- $background .= "background-position: {$position}; ";
- if( $attach == 'parallax' )
- {
- $attachment_class = '';
- if($repeat == 'stretch' || $repeat == 'no-repeat' ){ $attachment_class .= ' avia-full-stretch'; }
- if($repeat == 'contain' ){ $attachment_class .= ' avia-full-contain'; }
- $class .= ' av-parallax-section';
- $speed = apply_filters( 'avf_parallax_speed', '0.3', $params['id'] );
- $params['attach'] .= "<div class='av-parallax' data-avia-parallax-ratio='{$speed}' >";
- $params['attach'] .= "<div class='av-parallax-inner {$color} {$attachment_class}' style = '{$background}' >";
- $params['attach'] .= '</div>';
- $params['attach'] .= '</div>';
- $background = '';
- }
- $params['data'] = "data-section-bg-repeat='{$repeat}'";
- }
- else if( ! empty( $gradient_val ) )
- {
- $attach = 'scroll';
- if( $gradient_val !== '' )
- {
- $background .= "background-image: {$gradient_val};";
- }
- }
- if( $custom_bg != '' && $background == '' )
- {
- $background .= "background-color: {$custom_bg}; ";
- }
- /* custom margin */
- if( ! empty( $atts['margin'] ) )
- {
- $explode_custom_margin = explode( ',', $atts['custom_margin'] );
- if( count( $explode_custom_margin ) > 1 )
- {
- $atts['margin-top'] = $explode_custom_margin['0'];
- $atts['margin-bottom'] = $explode_custom_margin['1'];
- }
- else
- {
- $atts['margin-top'] = $atts['custom_margin'];
- $atts['margin-bottom'] = $atts['custom_margin'];
- }
- }
- $custom_margin_style = '';
- $custom_margin_style .= AviaHelper::style_string( $atts, 'margin-top' );
- $custom_margin_style .= AviaHelper::style_string( $atts, 'margin-bottom' );
- /*check/create overlay*/
- $overlay = '';
- $pre_wrap = "<div class='av-section-color-overlay-wrap'>" ;
- if( ! empty( $overlay_enable ) )
- {
- $overlay_src = '';
- $overlay = "opacity: {$overlay_opacity}; ";
- if( ! empty( $overlay_color ) )
- {
- $overlay .= "background-color: {$overlay_color}; ";
- }
- if( ! empty( $overlay_pattern ) )
- {
- if( $overlay_pattern == 'custom' )
- {
- $overlay_src = $overlay_custom_pattern;
- }
- else
- {
- $overlay_src = str_replace( '{{AVIA_BASE_URL}}', AVIA_BASE_URL, $overlay_pattern );
- }
- }
- if( ! empty( $overlay_src ) )
- {
- $overlay .= "background-image: url({$overlay_src}); background-repeat: repeat;";
- }
- $overlay = "<div class='av-section-color-overlay' style='{$overlay}'></div>";
- $class .= ' av-section-color-overlay-active';
- $params['attach'] .= $pre_wrap . $overlay;
- }
- if( ! empty( $scroll_down ) )
- {
- $arrow_style = '';
- $arrow_class = '';
- if( ! $overlay )
- {
- $params['attach'] .= $pre_wrap;
- }
- if( ! empty( $custom_arrow_bg ) )
- {
- $arrow_style = "style='color: {$custom_arrow_bg};'";
- $arrow_class = " av-custom-scroll-down-color";
- }
- $params['attach'] .= "<a href='#next-section' title='' class='scroll-down-link {$arrow_class}' {$arrow_style} " . av_icon_string( 'scrolldown' ) . '></a>';
- }
- $class .= " avia-bg-style-{$attach}";
- $params['class'] = $class . ' ' . $meta['el_class'] . ' ' . $av_display_classes;
- $params['bg'] = $background;
- $params['custom_margin'] = $custom_margin_style;
- $params['min_height'] = $min_height;
- $params['min_height_px'] = $min_height_px;
- $params['video'] = $video;
- $params['video_ratio'] = $video_ratio;
- $params['video_mobile_disabled'] = $video_mobile_disabled;
- if( isset( $meta['index'] ) && $meta['index'] >= 0 )
- {
- if( $meta['index'] == 0 )
- {
- $params['main_container'] = true;
- }
- if( $meta['index'] == 0 || ( isset( $meta['siblings']['prev']['tag'] ) && in_array( $meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section ) ) )
- {
- $params['close'] = false;
- }
- }
- if( $bottom_border == 'border-extra-arrow-down' )
- {
- $params['class'] .= ' av-arrow-down-section';
- }
- $avia_config['layout_container'] = 'section';
- $output .= avia_new_section( $params );
- $output .= ShortcodeHelper::avia_remove_autop( $content, true ) ;
- /*set extra arrow element*/
- if( strpos( $bottom_border, 'border-extra' ) !== false )
- {
- $backgroundEl = '';
- $backgroundElColor = ! empty( $custom_bg ) ? $custom_bg : $avia_config['backend_colors']['color_set'][ $color ]['bg'];
- if( strpos( $bottom_border, 'diagonal') !== false )
- {
- // bottom_border_diagonal_direction // bottom_border_diagonal_color
- $backgroundElColor = '#333333';
- if( isset( $bottom_border_diagonal_color ) )
- {
- $backgroundElColor = $bottom_border_diagonal_color;
- }
- $bottom_border .= ' ' . $bottom_border_diagonal_direction . ' ' . $bottom_border_style;
- }
- if( $backgroundElColor )
- {
- $backgroundEl = " style='background-color:{$backgroundElColor};' ";
- }
- avia_sc_section::$add_to_closing = "<div class='av-extra-border-element {$bottom_border}'><div class='av-extra-border-outer'><div class='av-extra-border-inner' {$backgroundEl}></div></div></div>";
- }
- else
- {
- avia_sc_section::$add_to_closing = '';
- }
- //next section needs an extra closing tag if overlay with wrapper was added:
- if( $overlay || ! empty( $scroll_down ) )
- {
- avia_sc_section::$close_overlay = '</div>';
- }
- else
- {
- avia_sc_section::$close_overlay = '';
- }
- //if the next tag is a section dont create a new section from this shortcode
- if( ! empty( $meta['siblings']['next']['tag'] ) && in_array( $meta['siblings']['next']['tag'], AviaBuilder::$full_el ) )
- {
- $skipSecond = true;
- }
- //if there is no next element dont create a new section. if we got a sidebar always create a next section at the bottom
- if( empty( $meta['siblings']['next']['tag'] ) && ! avia_has_sidebar() )
- {
- $skipSecond = true;
- }
- if( empty( $skipSecond ) )
- {
- $new_params['id'] = 'after_section_' . avia_sc_section::$section_count;
- $output .= avia_new_section( $new_params );
- }
- unset( $avia_config['layout_container'] );
- return $output;
- }
- /**
- *
- * @param array $args
- * @return string
- */
- protected function get_bg_string( array $args )
- {
- $style = '';
- if( ! empty( $args['attachment'] ) )
- {
- $image = false;
- $src = wp_get_attachment_image_src( $args['attachment'], $args['attachment_size'] );
- if( ! empty( $src[0] ) )
- {
- $image = $src[0];
- }
- if( $image )
- {
- // $bg = ! empty( $args['custom_bg'] ) ? $args['custom_bg'] : 'transparent';
- $bg = 'transparent';
- $pos = ! empty( $args['position'] ) ? $args['position'] : 'center center';
- $repeat = ! empty( $args['repeat'] ) ? $args['repeat'] : 'no-repeat';
- $extra = '';
- if( $repeat == 'stretch' )
- {
- $repeat = 'no-repeat';
- $extra = 'background-size: cover;';
- }
- if( $repeat == 'contain' )
- {
- $repeat = 'no-repeat';
- $extra = 'background-size: contain;';
- }
- $style = "background: $bg url($image) $repeat $pos; $extra";
- }
- }
- return $style;
- }
- }
- }
- if( ! function_exists( 'avia_new_section' ) )
- {
- function avia_new_section( $params = array() )
- {
- global $avia_section_markup, $avia_config;
- $defaults = array(
- 'class' => 'main_color',
- 'bg' => '',
- 'custom_margin' => '',
- 'close' => true,
- 'open' => true,
- 'open_structure' => true,
- 'open_color_wrap' => true,
- 'data' => '',
- 'style' => '',
- 'id' => '',
- 'main_container' => false,
- 'min_height' => '',
- 'min_height_px' => '',
- 'video' => '',
- 'video_ratio' => '16:9',
- 'video_mobile_disabled' => '',
- 'attach' => '',
- 'before_new' => '',
- 'custom_markup' => '',
- 'aria_label' => '' // set to true to force id as label
- );
- $defaults = array_merge( $defaults, $params );
- extract( $defaults );
- $post_class = '';
- $output = '';
- $bg_slider = '';
- $container_style = '';
- $id_val = $id;
- $id = ! empty( $id_val ) ? "id='{$id_val}'" : '';
- if( ! empty( $aria_label ) || ! empty( $id_val ) )
- {
- if( true === $aria_label )
- {
- $label = $id_val;
- }
- else if ( ! empty( $aria_label ) )
- {
- $label = $aria_label;
- }
- else
- {
- $label = '';
- }
- $aria_label = ! empty( $label ) ? "aria-label='{$label}'" : '';
- }
- else
- {
- $aria_label = '';
- }
- //close old content structure. only necessary when previous element was a section. other fullwidth elements dont need this
- if( $close )
- {
- $cm = avia_section_close_markup();
- $output .= "</div></div>{$cm}</div>" . avia_sc_section::$add_to_closing . avia_sc_section::$close_overlay . '</div>';
- avia_sc_section::$add_to_closing = '';
- avia_sc_section::$close_overlay = '';
- }
- //start new
- if( $open )
- {
- if( function_exists('avia_get_the_id') )
- {
- $post_class = 'post-entry-' . avia_get_the_id();
- }
- if( $open_color_wrap )
- {
- if( ! empty( $min_height ) )
- {
- $class .= " av-minimum-height av-minimum-height-{$min_height} ";
- if( is_numeric( $min_height ) )
- {
- $data .= " data-av_minimum_height_pc='{$min_height}'";
- }
- if( $min_height == 'custom' && $min_height_px != '' )
- {
- $min_height_px = (int) $min_height_px;
- $container_style = "style='height:{$min_height_px}px'";
- }
- }
- if( ! empty( $video ) )
- {
- $slide = array(
- 'shortcode' => 'av_slideshow',
- 'content' => '',
- 'attr' => array(
- 'id' => '',
- 'video' => $video ,
- 'slide_type' => 'video',
- 'video_mute' => true,
- 'video_loop' => true,
- 'video_ratio' => $video_ratio,
- 'video_controls' => 'disabled',
- 'video_section_bg' => true,
- 'video_format' => '',
- 'video_mobile' => '',
- 'video_mobile_disabled' => $video_mobile_disabled
- )
- );
- $bg_slider = new avia_slideshow( array( 'content' => array( $slide ) ) );
- $bg_slider->set_extra_class( 'av-section-video-bg' );
- $class .= ' av-section-with-video-bg';
- $class .= ! empty( $video_mobile_disabled ) ? ' av-section-mobile-video-disabled' : '';
- $data .= " data-section-video-ratio='{$video_ratio}'";
- }
- $output .= $before_new;
- //fix version 4.5.1 by Kriesi
- //we cant just overwrite style since it might be passed by a function. eg the menu element passes z-index. need to merge the style strings
- $extra_style = "{$bg} {$custom_margin}";
- $style = trim($style);
- if( empty( $style ) )
- {
- $style = "style='{$extra_style}' ";
- }
- else
- {
- $style = str_replace( "style='", "style='{$extra_style} ", $style );
- $style = str_replace( 'style="', 'style="' . $extra_style . ' ', $style );
- }
- if( $class == 'main_color' )
- {
- $class .= ' av_default_container_wrap';
- }
- $output .= "<div {$id} {$aria_label} class='{$class} container_wrap " . avia_layout_class( 'main' , false ) . "' {$style} {$data}>";
- $output .= ! empty( $bg_slider ) ? $bg_slider->html() : '';
- $output .= $attach;
- $output .= apply_filters( 'avf_section_container_add', '', $defaults );
- }
- //this applies only for sections. other fullwidth elements dont need the container for centering
- if( $open_structure )
- {
- if( ! empty( $main_container ) )
- {
- $markup = 'main ' . avia_markup_helper( array( 'context' => 'content', 'echo' => false, 'custom_markup' => $custom_markup ) );
- $avia_section_markup = 'main';
- }
- else
- {
- $markup = 'div';
- }
- $output .= "<div class='container' {$container_style}>";
- $output .= "<{$markup} class='template-page content " . avia_layout_class( 'content', false ) . " units'>";
- $output .= "<div class='post-entry post-entry-type-page {$post_class}'>";
- $output .= "<div class='entry-content-wrapper clearfix'>";
- }
- }
- return $output;
- }
- }
- if( ! function_exists( 'avia_section_close_markup' ) )
- {
- function avia_section_close_markup()
- {
- global $avia_section_markup, $avia_config;
- if( ! empty( $avia_section_markup ) )
- {
- $avia_section_markup = false;
- $close_markup = '</main><!-- close content main element -->';
- }
- else
- {
- $close_markup = '</div><!-- close content main div -->';
- }
- return $close_markup;
- }
- }
- if( ! function_exists( 'avia_section_after_element_content' ) )
- {
- function avia_section_after_element_content( $meta, $second_id = '', $skipSecond = false, $extra = '' )
- {
- $output = '</div>'; //close section
- $output .= $extra;
- //if the next tag is a section dont create a new section from this shortcode
- if( ! empty( $meta['siblings']['next']['tag'] ) && in_array( $meta['siblings']['next']['tag'], AviaBuilder::$full_el ) )
- {
- $skipSecond = true;
- }
- //if there is no next element dont create a new section.
- if( empty( $meta['siblings']['next']['tag'] ) )
- {
- $skipSecond = true;
- }
- if( empty( $skipSecond ) )
- {
- $output .= avia_new_section(array('close'=>false, 'id' => $second_id));
- }
- return $output;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement