| 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
/**
* Pricing Tables Shortcode
*/
/* Shortcode generator config
* ----------------------------------------------------- */
$shortcodes_config['pricing'] = array(
'no_preview' => true,
'options' => array(
'column' => array(
'name' => __('Column', 'inbound-pro' ),
'desc' => __('Select the column.', 'inbound-pro' ),
'type' => 'select',
'options' => array(
'2' => __('2 Columns', 'inbound-pro' ),
'3' => __('3 Columns', 'inbound-pro' ),
'4' => __('4 Columns', 'inbound-pro' ),
'5' => __('5 Columns', 'inbound-pro' )
),
'std' => '4',
)
),
'child' => array(
'options' => array(
'featured' => array(
'name' => __('Featured Plan', 'leads'),
'desc' => __('Check to set this plan as featured', 'inbound-pro' ),
'type' => 'checkbox',
'std' => '0',
),
'title' => array(
'name' => __('Plan Title', 'inbound-pro' ),
'desc' => __('Enter the plan title.', 'inbound-pro' ),
'type' => 'text',
'std' => ''
),
'price' => array(
'name' => __('Plan Price', 'inbound-pro' ),
'desc' => __('Enter the plan price.', 'inbound-pro' ),
'type' => 'text',
'std' => ''
),
'term' => array(
'name' => __('Plan Term', 'inbound-pro' ),
'desc' => __('Enter the plan term. e.g : "per month", "per year" etc.', 'inbound-pro' ),
'type' => 'text',
'std' => ''
),
'button_text' => array(
'name' => __('Plan Button Text', 'inbound-pro' ),
'desc' => __('Enter the button text label.', 'inbound-pro' ),
'type' => 'text',
'std' => ''
),
'button_link' => array(
'name' => __('Plan Button Link', 'inbound-pro' ),
'desc' => __('Enter the button link destination URL.', 'inbound-pro' ),
'type' => 'text',
'std' => ''
),
'content' => array(
'name' => __('Plan Content', 'leads'),
'desc' => __('Put the content here.', 'leads'),
'type' => 'textarea',
'std' => ''
)
),
'shortcode' => '[plan featured="{{featured}}" title="{{title}}" price="{{price}}" term="{{term}}" button_text="{{button_text}}" button_link="{{button_link}}"]{{content}}[/plan]',
'clone' => __('Add More Testimony', 'cta' )
),
'shortcode' => '[pricing column="{{column}}"]{{child}}[/pricing]',
'popup_title' => 'Insert Pricing Shortcode'
);
/* Page builder module config
* ----------------------------------------------------- */
$freshbuilder_modules['pricing'] = array(
'name' => __('Pricing Table', 'inbound-pro' ),
'size' => 'one_full',
'options' => array(
'column' => array(
'name' => __('Column', 'inbound-pro' ),
'desc' => __('Select the column.', 'inbound-pro' ),
'type' => 'select',
'options' => array(
'2' => __('2 Columns', 'inbound-pro' ),
'3' => __('3 Columns', 'inbound-pro' ),
'4' => __('4 Columns', 'inbound-pro' ),
'5' => __('5 Columns', 'inbound-pro' )
),
'std' => '4',
'class' => '',
'is_content' => 0
)
),
'child' => array(
'featured' => array(
'name' => __('Featured Plan', 'inbound-pro' ),
'desc' => __('Check to set this plan as featured', 'inbound-pro' ),
'type' => 'checkbox',
'std' => '0',
'class' => '',
'is_content' => 0
),
'title' => array(
'name' => __('Plan Title', 'inbound-pro' ),
'desc' => __('Enter the plan title.', 'inbound-pro' ),
'type' => 'text',
'std' => '',
'class' => '',
'is_content' => 0
),
'price' => array(
'name' => __('Plan Price', 'inbound-pro' ),
'desc' => __('Enter the plan price.', 'inbound-pro' ),
'type' => 'text',
'std' => '',
'class' => '',
'is_content' => 0
),
'term' => array(
'name' => __('Plan Term', 'inbound-pro' ),
'desc' => __('Enter the plan term. e.g : "per month", "per year" etc.', 'inbound-pro' ),
'type' => 'text',
'std' => '',
'class' => '',
'is_content' => 0
),
'button_text' => array(
'name' => __('Plan Button Text', 'inbound-pro' ),
'desc' => __('Enter the button text label.', 'inbound-pro' ),
'type' => 'text',
'std' => '',
'class' => '',
'is_content' => 0
),
'button_link' => array(
'name' => __('Plan Button Link', 'inbound-pro' ),
'desc' => __('Enter the button link destination URL.', 'inbound-pro' ),
'type' => 'text',
'std' => '',
'class' => '',
'is_content' => 0
),
'content' => array(
'name' => __('Plan Content', 'inbound-pro' ),
'desc' => __('Put the content here.', 'inbound-pro' ),
'type' => 'textarea',
'class' => '',
'is_content' => 1
)
),
'child_code' => 'plan'
);
/* Add shortcode
* ----------------------------------------------------- */
add_shortcode('pricing', 'inbound_shortcode_pricing');
function inbound_shortcode_pricing( $atts, $content = null ) {
extract(shortcode_atts(array(
'column' => '3'
), $atts));
$grid = ' grid full';
if ($column == '2') $grid = ' grid one-half';
if ($column == '3') $grid = ' grid one-third';
if ($column == '4') $grid = ' grid one-fourth';
if ($column == '5') $grid = ' grid one-fifth';
$out = '';
if (!preg_match_all("/(.?)\[(plan)\b(.*?)(?:(\/))?\](?:(.+?)\[\/plan\])?(.?)/s", $content, $matches)) {
return do_shortcode($content);
} else {
for($i = 0; $i < count($matches[0]); $i++) {
$matches[3][$i] = shortcode_parse_atts($matches[3][$i]);
}
$out .= '<div class="pricing clearfix">';
for($i = 0; $i < count($matches[0]); $i++) {
$featured = ( $matches[3][$i]['featured'] == '1') ? ' featured' : '';
$out .= '<div class="plan '. $grid . $featured .'">';
$out .= '<div class="plan-header">';
$out .= '<h2>' . $matches[3][$i]['title'] . '</h2>';
$out .= '</div>';
$out .= '<div class="plan-price">';
$out .= '<strong>'. $matches[3][$i]['price'] .'</strong>';
$out .= '<span>'. $matches[3][$i]['term'] .'</span>';
$out .= '</div>';
$out .= '<div class="plan-content">';
$out .= do_shortcode(trim($matches[5][$i]));
$out .= '</div>';
$out .= '<div class="plan-footer">';
$out .= '<a class="button" href="'. $matches[3][$i]['button_link'] .'">'. $matches[3][$i]['button_text'] .'</a>';
$out .= '</div>';
$out .= '</div>';
}
$out .= '</div>';
}
return $out;
}