Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/contactform7/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules
<?php
if ( ! function_exists('edgtf_quadric_contact_form_map') ) {
/**
* Map Contact Form 7 shortcode
* Hooks on vc_after_init action
*/
function edgtf_quadric_contact_form_map()
{
vc_add_param('contact-form-7', array(
'type' => 'dropdown',
'heading' => esc_html__( 'Style', 'quadric' ),
'param_name' => 'html_class',
'value' => array(
esc_html__( 'Default', 'quadric' ) => 'default',
esc_html__( 'Custom Style 1', 'quadric' ) => 'cf7_custom_style_1',
esc_html__( 'Custom Style 2', 'quadric' ) => 'cf7_custom_style_2',
esc_html__( 'Custom Style 3', 'quadric' ) => 'cf7_custom_style_3',
esc_html__( 'Custom Style 4', 'quadric' ) => 'cf7_custom_style_4'
),
'description' => esc_html__( 'You can style each form element individually in Edge Options > Contact Form 7', 'quadric' )
));
}
add_action('vc_after_init', 'edgtf_quadric_contact_form_map');
}
?>