Submit
Path:
~
/
home
/
getwphos
/
public_html
/
ccma
/
wp-content
/
themes
/
curly
/
framework
/
modules
/
visualcomposer
/
File Content:
visual-composer-config.php
<?php /** * Force Visual Composer to initialize as "built into the theme". This will hide certain tabs under the Settings->Visual Composer page */ if (function_exists('vc_set_as_theme')) { vc_set_as_theme(true); } /** * Change path for overridden templates */ if (function_exists('vc_set_shortcodes_templates_dir')) { $dir = MIKADO_ROOT_DIR . '/vc-templates'; vc_set_shortcodes_templates_dir($dir); } if (!function_exists('curly_mkdf_configure_visual_composer_frontend_editor')) { /** * Configuration for Visual Composer FrontEnd Editor * Hooks on vc_after_init action */ function curly_mkdf_configure_visual_composer_frontend_editor() { /** * Remove frontend editor */ if (function_exists('vc_disable_frontend')) { vc_disable_frontend(); } } add_action('vc_after_init', 'curly_mkdf_configure_visual_composer_frontend_editor'); } if (!function_exists('curly_mkdf_vc_row_map')) { /** * Map VC Row shortcode * Hooks on vc_after_init action */ function curly_mkdf_vc_row_map() { /******* VC Row shortcode - begin *******/ vc_add_param('vc_row', array( 'type' => 'dropdown', 'param_name' => 'row_content_width', 'heading' => esc_html__('Mikado Row Content Width', 'curly'), 'value' => array( esc_html__('Full Width', 'curly') => 'full-width', esc_html__('In Grid', 'curly') => 'grid' ), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'textfield', 'param_name' => 'anchor', 'heading' => esc_html__('Mikado Anchor ID', 'curly'), 'description' => esc_html__('For example "home"', 'curly'), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'colorpicker', 'param_name' => 'simple_background_color', 'heading' => esc_html__('Mikado Background Color', 'curly'), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'attach_image', 'param_name' => 'simple_background_image', 'heading' => esc_html__('Mikado Background Image', 'curly'), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'dropdown', 'param_name' => 'disable_background_image', 'heading' => esc_html__('Mikado Disable Background Image', 'curly'), 'value' => array( esc_html__('Never', 'curly') => '', esc_html__('Below 1280px', 'curly') => '1280', esc_html__('Below 1024px', 'curly') => '1024', esc_html__('Below 768px', 'curly') => '768', esc_html__('Below 680px', 'curly') => '680', esc_html__('Below 480px', 'curly') => '480' ), 'save_always' => true, 'description' => esc_html__('Choose on which stage you hide row background image', 'curly'), 'dependency' => array('element' => 'simple_background_image', 'not_empty' => true), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'attach_image', 'param_name' => 'parallax_background_image', 'heading' => esc_html__('Mikado Parallax Background Image', 'curly'), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'textfield', 'param_name' => 'parallax_bg_speed', 'heading' => esc_html__('Mikado Parallax Speed', 'curly'), 'description' => esc_html__('Set your parallax speed. Default value is 1.', 'curly'), 'dependency' => array('element' => 'parallax_background_image', 'not_empty' => true), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'textfield', 'param_name' => 'parallax_bg_height', 'heading' => esc_html__('Mikado Parallax Section Height (px)', 'curly'), 'dependency' => array('element' => 'parallax_background_image', 'not_empty' => true), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row', array( 'type' => 'dropdown', 'param_name' => 'content_text_aligment', 'heading' => esc_html__('Mikado Content Aligment', 'curly'), 'value' => array( esc_html__('Default', 'curly') => '', esc_html__('Left', 'curly') => 'left', esc_html__('Center', 'curly') => 'center', esc_html__('Right', 'curly') => 'right' ), 'group' => esc_html__('Mikado Settings', 'curly') ) ); /******* VC Row shortcode - end *******/ /******* VC Row Inner shortcode - begin *******/ vc_add_param('vc_row_inner', array( 'type' => 'dropdown', 'param_name' => 'row_content_width', 'heading' => esc_html__('Mikado Row Content Width', 'curly'), 'value' => array( esc_html__('Full Width', 'curly') => 'full-width', esc_html__('In Grid', 'curly') => 'grid' ), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row_inner', array( 'type' => 'colorpicker', 'param_name' => 'simple_background_color', 'heading' => esc_html__('Mikado Background Color', 'curly'), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row_inner', array( 'type' => 'attach_image', 'param_name' => 'simple_background_image', 'heading' => esc_html__('Mikado Background Image', 'curly'), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row_inner', array( 'type' => 'dropdown', 'param_name' => 'disable_background_image', 'heading' => esc_html__('Mikado Disable Background Image', 'curly'), 'value' => array( esc_html__('Never', 'curly') => '', esc_html__('Below 1280px', 'curly') => '1280', esc_html__('Below 1024px', 'curly') => '1024', esc_html__('Below 768px', 'curly') => '768', esc_html__('Below 680px', 'curly') => '680', esc_html__('Below 480px', 'curly') => '480' ), 'save_always' => true, 'description' => esc_html__('Choose on which stage you hide row background image', 'curly'), 'dependency' => array('element' => 'simple_background_image', 'not_empty' => true), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('vc_row_inner', array( 'type' => 'dropdown', 'param_name' => 'content_text_aligment', 'heading' => esc_html__('Mikado Content Aligment', 'curly'), 'value' => array( esc_html__('Default', 'curly') => '', esc_html__('Left', 'curly') => 'left', esc_html__('Center', 'curly') => 'center', esc_html__('Right', 'curly') => 'right' ), 'group' => esc_html__('Mikado Settings', 'curly') ) ); /******* VC Row Inner shortcode - end *******/ /******* VC Revolution Slider shortcode - begin *******/ if (curly_mkdf_revolution_slider_installed()) { vc_add_param('rev_slider_vc', array( 'type' => 'dropdown', 'param_name' => 'enable_paspartu', 'heading' => esc_html__('Mikado Enable Passepartout', 'curly'), 'value' => array_flip(curly_mkdf_get_yes_no_select_array(false)), 'save_always' => true, 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('rev_slider_vc', array( 'type' => 'dropdown', 'param_name' => 'paspartu_size', 'heading' => esc_html__('Mikado Passepartout Size', 'curly'), 'value' => array( esc_html__('Tiny', 'curly') => 'tiny', esc_html__('Small', 'curly') => 'small', esc_html__('Normal', 'curly') => 'normal', esc_html__('Large', 'curly') => 'large' ), 'save_always' => true, 'dependency' => array('element' => 'enable_paspartu', 'value' => array('yes')), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('rev_slider_vc', array( 'type' => 'dropdown', 'param_name' => 'disable_side_paspartu', 'heading' => esc_html__('Mikado Disable Side Passepartout', 'curly'), 'value' => array_flip(curly_mkdf_get_yes_no_select_array(false)), 'save_always' => true, 'dependency' => array('element' => 'enable_paspartu', 'value' => array('yes')), 'group' => esc_html__('Mikado Settings', 'curly') ) ); vc_add_param('rev_slider_vc', array( 'type' => 'dropdown', 'param_name' => 'disable_top_paspartu', 'heading' => esc_html__('Mikado Disable Top Passepartout', 'curly'), 'value' => array_flip(curly_mkdf_get_yes_no_select_array(false)), 'save_always' => true, 'dependency' => array('element' => 'enable_paspartu', 'value' => array('yes')), 'group' => esc_html__('Mikado Settings', 'curly') ) ); } /******* VC Revolution Slider shortcode - end *******/ } add_action('vc_after_init', 'curly_mkdf_vc_row_map'); }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
load.php
153 bytes
0644
visual-composer-config.php
11225 bytes
0644
N4ST4R_ID | Naxtarrr