Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/shortcodes/icons/icons-sc-vc.php |
<?php
/**
* Shortcode: Icons (WPBakery support)
*
* @package ThemeREX Addons
* @since v1.2
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
// Add [trx_sc_icons] in the VC shortcodes list
if (!function_exists('trx_addons_sc_icons_add_in_vc')) {
function trx_addons_sc_icons_add_in_vc() {
if (!trx_addons_exists_vc()) return;
vc_lean_map("trx_sc_icons", 'trx_addons_sc_icons_add_in_vc_params');
class WPBakeryShortCode_Trx_Sc_Icons extends WPBakeryShortCode {}
}
add_action('init', 'trx_addons_sc_icons_add_in_vc', 20);
}
// Return params
if (!function_exists('trx_addons_sc_icons_add_in_vc_params')) {
function trx_addons_sc_icons_add_in_vc_params() {
return apply_filters('trx_addons_sc_map', array(
"base" => "trx_sc_icons",
"name" => esc_html__("Icons", 'trx_addons'),
"description" => wp_kses_data( __("Insert icons or images with title and description", 'trx_addons') ),
"category" => esc_html__('ThemeREX', 'trx_addons'),
"icon" => 'icon_trx_sc_icons',
"class" => "trx_sc_icons",
"content_element" => true,
"is_container" => false,
"show_settings_on_create" => true,
"params" => array_merge(
array(
array(
"param_name" => "type",
"heading" => esc_html__("Layout", 'trx_addons'),
"description" => wp_kses_data( __("Select shortcodes's layout", 'trx_addons') ),
"admin_label" => true,
'edit_field_class' => 'vc_col-sm-4',
"std" => "default",
"value" => array_flip(apply_filters('trx_addons_sc_type', trx_addons_components_get_allowed_layouts('sc', 'icons'), 'trx_sc_icons')),
"type" => "dropdown"
),
array(
"param_name" => "align",
"heading" => esc_html__("Align", 'trx_addons'),
"description" => wp_kses_data( __("Select alignment of this item", 'trx_addons') ),
'edit_field_class' => 'vc_col-sm-4',
"std" => "center",
'save_always' => true,
"value" => array_flip(trx_addons_get_list_sc_aligns()),
"type" => "dropdown"
),
array(
"param_name" => "size",
"heading" => esc_html__("Icon size", 'trx_addons'),
"description" => wp_kses_data( __("Select icon's size", 'trx_addons') ),
'edit_field_class' => 'vc_col-sm-4',
"value" => array_flip(trx_addons_get_list_sc_icon_sizes()),
'save_always' => true,
"std" => "medium",
"type" => "dropdown"
),
array(
'param_name' => 'color',
'heading' => esc_html__( 'Color', 'trx_addons' ),
'description' => esc_html__( 'Select custom color for each icon', 'trx_addons' ),
'edit_field_class' => 'vc_col-sm-4',
'type' => 'colorpicker',
),
array(
"param_name" => "columns",
"heading" => esc_html__("Columns", 'trx_addons'),
"description" => wp_kses_data( __("Specify the number of columns. If left empty or assigned the value '0' - auto detect by the number of items.", 'trx_addons') ),
'edit_field_class' => 'vc_col-sm-4',
"type" => "textfield"
),
array(
"param_name" => "icons_animation",
"heading" => esc_html__("Animation", 'trx_addons'),
"description" => wp_kses_data( __("Toggle on if you want to animate icons. Attention! Animation is enabled only if there is an .SVG icon in your theme with the same name as the selected icon.", 'trx_addons') ),
'edit_field_class' => 'vc_col-sm-4',
"std" => "0",
"value" => array(esc_html__("Animate icons", 'trx_addons') => "1" ),
"type" => "checkbox"
),
array(
'type' => 'param_group',
'param_name' => 'icons',
'heading' => esc_html__( 'Icons', 'trx_addons' ),
"description" => wp_kses_data( __("Select icons, specify title and/or description for each item", 'trx_addons') ),
'value' => urlencode( json_encode( apply_filters('trx_addons_sc_param_group_value', array(
array(
'title' => esc_html__( 'One', 'trx_addons' ),
'description' => '',
'color' => '',
'char' => '',
'image' => '',
'link' => '',
'icon' => '',
'icon_fontawesome' => 'empty',
'icon_openiconic' => 'empty',
'icon_typicons' => 'empty',
'icon_entypo' => 'empty',
'icon_linecons' => 'empty'
),
), 'trx_sc_icons') ) ),
'params' => apply_filters('trx_addons_sc_param_group_params', array_merge(
trx_addons_vc_add_icon_param(''),
array(
array(
'param_name' => 'char',
'heading' => esc_html__( 'or character', 'trx_addons' ),
'description' => esc_html__( 'Single character instaed image or icon', 'trx_addons' ),
'edit_field_class' => 'vc_col-sm-4',
'type' => 'textfield',
),
array(
"param_name" => "image",
"heading" => esc_html__("or image", 'trx_addons'),
"description" => wp_kses_data( __("Select or upload image or specify URL from other site", 'trx_addons') ),
'edit_field_class' => 'vc_col-sm-4',
"type" => "attach_image"
),
array(
'param_name' => 'color',
'heading' => esc_html__( 'Color', 'trx_addons' ),
'description' => esc_html__( 'Select custom color for this item', 'trx_addons' ),
'edit_field_class' => 'vc_col-sm-4',
'type' => 'colorpicker',
),
array(
'param_name' => 'title',
'heading' => esc_html__( 'Title', 'trx_addons' ),
'description' => esc_html__( 'Enter title for this item', 'trx_addons' ),
'admin_label' => true,
'edit_field_class' => 'vc_col-sm-6 vc_new_row',
'type' => 'textfield',
),
array(
'param_name' => 'link',
'heading' => esc_html__( 'Link', 'trx_addons' ),
'description' => esc_html__( 'URL to link this block', 'trx_addons' ),
'edit_field_class' => 'vc_col-sm-6',
'type' => 'textfield',
),
array(
'param_name' => 'description',
'heading' => esc_html__( 'Description', 'trx_addons' ),
'description' => esc_html__( 'Enter short description for this item', 'trx_addons' ),
'type' => 'textarea_safe',
),
)
), 'trx_sc_icons')
)
),
trx_addons_vc_add_slider_param(),
apply_filters( 'trx_addons_filter_add_title_param', true, 'trx_sc_icons' ) ? trx_addons_vc_add_title_param(false, false) : array(),
trx_addons_vc_add_id_param()
)
), 'trx_sc_icons' );
}
}