Current File : /home/aventura/www/site/wp-content/plugins/js_composer/config/structure/shortcode-vc-raw-js.php |
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
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' => 'el_id',
'heading' => __( 'Element ID', 'js_composer' ),
'param_name' => 'el_id',
'description' => sprintf( __( 'Enter element ID (Note: make sure it is unique and valid according to <a href="%s" target="_blank">w3c specification</a>).', 'js_composer' ), 'http://www.w3schools.com/tags/att_global_id.asp' ),
),
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' ),
),
),
);