| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/landing-pages/shared/shortcodes/shortcodes/ |
Upload File : |
<?php
/**
* Divider Shortcode
*/
/* Shortcode generator config
* ----------------------------------------------------- */
$shortcodes_config['divider'] = array(
'no_preview' => true,
'options' => array(
'style' => array(
'name' => __('Border Style', 'inbound-pro' ),
'desc' => __('Select the style.', 'inbound-pro' ),
'type' => 'select',
'options' => array(
'none' => __('No Border', 'inbound-pro' ),
'dashed' => __('Dashed', 'inbound-pro' ),
'dotted' => __('Dotted', 'inbound-pro' ),
'double' => __('Double', 'inbound-pro' ),
'solid' => __('Solid', 'inbound-pro' )
),
'std' => 'none'
),
'color' => array(
'name' => __('Border Color', 'inbound-pro' ),
'desc' => __('Enter a hex color code.', 'inbound-pro' ),
'type' => 'text',
'std' => '#ebebea'
),
'margin_top' => array(
'name' => __('Top Margin', 'inbound-pro' ),
'desc' => __('Enter the top margin value.', 'inbound-pro' ),
'type' => 'text',
'std' => '0px'
),
'margin_bottom' => array(
'name' => __('Bottom Margin', 'inbound-pro' ),
'desc' => __('Enter the bottom margin value.', 'inbound-pro' ),
'type' => 'text',
'std' => '0px'
)
),
'shortcode' => '[divider style="{{style}}" color="{{color}}" margin_top="{{margin_top}}" margin_bottom="{{margin_bottom}}"]',
'popup_title' => 'Insert Divider Shortcode'
);
/* Page builder module config
* ----------------------------------------------------- */
$freshbuilder_modules['divider'] = array(
'name' => __('Divider', 'inbound-pro' ),
'size' => 'one_full',
'options' => array(
'style' => array(
'name' => __('Border Style', 'inbound-pro' ),
'desc' => __('Select the style.', 'inbound-pro' ),'type' => 'select',
'options' => array(
'none' => __('No Border', 'inbound-pro' ),
'dashed' => __('Dashed', 'inbound-pro' ),
'dotted' => __('Dotted', 'inbound-pro' ),
'double' => __('Double', 'inbound-pro' ),
'solid' => __('Solid', 'inbound-pro' )
),
'std' => 'none',
'class' => '',
'is_content' => '0'
),
'color' => array(
'name' => __('Border Color', 'inbound-pro' ),
'desc' => __('Enter a hex color code.', 'inbound-pro' ),
'type' => 'text',
'std' => '#ebebea',
'class' => '',
'is_content' => '0'
),
'margin_top' => array(
'name' => __('Margin Top', 'inbound-pro' ),
'desc' => __('Enter the top margin value.', 'inbound-pro' ),
'type' => 'text',
'std' => '0px',
'class' => '',
'is_content' => '0'
),
'margin_bottom' => array(
'name' => __('Margin Bottom', 'inbound-pro' ),
'desc' => __('Enter the bottom margin value.', 'inbound-pro' ),
'type' => 'text',
'std' => '0px',
'class' => '',
'is_content' => '0'
)
)
);
/* Add shortcode
* ----------------------------------------------------- */
add_shortcode('divider', 'inbound_shortcode_divider');
if (!function_exists('inbound_shortcode_divider')) {
function inbound_shortcode_divider( $atts, $content = null ) {
extract(shortcode_atts(array(
'style' => '',
'margin_top' => '',
'margin_bottom' => '',
'color' => '',
'class' => ''
), $atts));
$margin_top = ($margin_top) ? $margin_top : 0;
$margin_bottom = ($margin_bottom) ? $margin_bottom : 0;
$color = ($color) ? $color : '#eaeaea';
$class = ($class) ? " $class" : '';
return '<div class="divider '. $style . $class .'" style="margin-top:'. $margin_top .';margin-bottom:'. $margin_bottom .';border-color:'. $color .'"></div>';
}
}