?
shortcode-vc-raw-html.php 0000666 00000002046 15126350404 0011414 0 ustar 00 <?php
return array(
'name' => __( 'Raw HTML', 'js_composer' ),
'base' => 'vc_raw_html',
'icon' => 'icon-wpb-raw-html',
'category' => __( 'Structure', 'js_composer' ),
'wrapper_class' => 'clearfix',
'description' => __( 'Output raw HTML code on your page', 'js_composer' ),
'params' => array(
array(
'type' => 'textarea_raw_html',
'holder' => 'div',
'heading' => __( 'Raw HTML', 'js_composer' ),
'param_name' => 'content',
'value' => base64_encode( '<p>I am raw html block.<br/>Click edit button to change this html</p>' ),
'description' => __( 'Enter your HTML content.', 'js_composer' ),
),
array(
'type' => 'textfield',
'heading' => __( 'Extra class name', 'js_composer' ),
'param_name' => 'el_class',
'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'js_composer' ),
),
array(
'type' => 'css_editor',
'heading' => __( 'CSS box', 'js_composer' ),
'param_name' => 'css',
'group' => __( 'Design Options', 'js_composer' ),
),
),
); shortcode-vc-raw-js.php 0000666 00000001650 15126350404 0011064 0 ustar 00 <?php
return array(
'name' => __( 'Raw JS', 'js_composer' ),
'base' => 'vc_raw_js',
'icon' => 'icon-wpb-raw-javascript',
'category' => __( 'Structure', 'js_composer' ),
'wrapper_class' => 'clearfix',
'description' => __( 'Output raw JavaScript code on your page', 'js_composer' ),
'params' => array(
array(
'type' => 'textarea_raw_html',
'holder' => 'div',
'heading' => __( 'JavaScript Code', 'js_composer' ),
'param_name' => 'content',
'value' => __( base64_encode( '<script type="text/javascript"> alert("Enter your js here!" ); </script>' ), 'js_composer' ),
'description' => __( 'Enter your JavaScript code.', 'js_composer' ),
),
array(
'type' => 'textfield',
'heading' => __( 'Extra class name', 'js_composer' ),
'param_name' => 'el_class',
'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'js_composer' ),
),
),
);