1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212:
<?php
$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'
);
$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('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;
}