shortcode-vc-tab.php 630 B

123456789101112131415161718192021222324252627
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3. die( '-1' );
  4. }
  5. return array(
  6. 'name' => esc_html__( 'Old Tab', 'js_composer' ),
  7. 'base' => 'vc_tab',
  8. 'allowed_container_element' => 'vc_row',
  9. 'is_container' => true,
  10. 'content_element' => false,
  11. 'deprecated' => '4.6',
  12. 'params' => array(
  13. array(
  14. 'type' => 'textfield',
  15. 'heading' => esc_html__( 'Title', 'js_composer' ),
  16. 'param_name' => 'title',
  17. 'description' => esc_html__( 'Enter title of tab.', 'js_composer' ),
  18. ),
  19. array(
  20. 'type' => 'tab_id',
  21. 'heading' => esc_html__( 'Tab ID', 'js_composer' ),
  22. 'param_name' => 'tab_id',
  23. ),
  24. ),
  25. 'js_view' => 'VcTabView',
  26. );