File: //var/www/mussarq_bak2/wp-content/themes/wpnull24/framework/config/elements/pricing.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );
$btn_styles = us_get_btn_styles();
$body_fontsize = us_get_option( 'body_fontsize', '16px' );
$misc = us_config( 'elements_misc' );
$design_options = us_config( 'elements_design_options' );
$items_std = array(
array(
'title' => 'Free',
'price' => '$0',
'substring' => 'per month',
'features' => '1 project
1 user
200 tasks
No support',
'btn_text' => 'Sign up',
'btn_color' => 'light',
'btn_style' => 'solid',
'btn_size' => '15px',
'btn_iconpos' => 'left',
),
array(
'title' => 'Standard',
'type' => 'featured',
'price' => '$24',
'substring' => 'per month',
'features' => '10 projects
10 users
Unlimited tasks
Premium support',
'btn_text' => 'Sign up',
'btn_color' => 'primary',
'btn_style' => 'solid',
'btn_size' => '15px',
'btn_iconpos' => 'left',
),
array(
'title' => 'Premium',
'price' => '$50',
'substring' => 'per month',
'features' => 'Unlimited projects
Unlimited users
Unlimited tasks
Premium support',
'btn_text' => 'Sign up',
'btn_color' => 'light',
'btn_style' => 'solid',
'btn_size' => '15px',
'btn_iconpos' => 'left',
),
);
$items_std_string = urlencode( json_encode( $items_std ) );
return array(
'title' => __( 'Pricing Table', 'us' ),
'icon' => 'fas fa-dollar-sign',
'params' => array_merge(
array(
// General
'items' => array(
'type' => 'group',
'is_sortable' => TRUE,
'params' => array(
'title' => array(
'title' => us_translate( 'Title' ),
'type' => 'text',
'std' => 'New Item',
'admin_label' => TRUE,
),
'type' => array(
'type' => 'switch',
'switch_text' => __( 'Mark this item as featured', 'us' ),
'std' => FALSE,
),
'price' => array(
'title' => __( 'Price', 'us' ),
'type' => 'text',
'std' => '',
'cols' => 2,
'admin_label' => TRUE,
),
'substring' => array(
'title' => __( 'Price Substring', 'us' ),
'type' => 'text',
'std' => '',
'cols' => 2,
),
'features' => array(
'title' => __( 'Features List', 'us' ),
'type' => 'textarea',
'std' => '',
),
'btn_text' => array(
'title' => __( 'Button Label', 'us' ),
'type' => 'text',
'std' => 'Sign up',
),
'btn_link' => array(
'title' => __( 'Button Link', 'us' ),
'type' => 'link',
'std' => '',
),
'btn_style' => array(
'title' => __( 'Button Style', 'us' ),
'description' => $misc['desc_btn_styles'],
'type' => 'select',
'options' => $btn_styles,
'std' => '1',
),
'btn_size' => array(
'title' => __( 'Button Size', 'us' ),
'description' => $misc['desc_font_size'],
'type' => 'text',
'std' => $body_fontsize,
),
'btn_icon' => array(
'title' => __( 'Button Icon', 'us' ),
'type' => 'icon',
'std' => '',
),
'btn_iconpos' => array(
'title' => __( 'Button Icon Position', 'us' ),
'type' => 'select',
'options' => array(
'left' => us_translate( 'Left' ),
'right' => us_translate( 'Right' ),
),
'std' => 'left',
),
),
'std' => $items_std_string,
),
), $design_options
),
);