ActionCustomSettings.php 452 B

123456789101112131415161718192021222324
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. return array(
  3. /*
  4. * TAG
  5. */
  6. 'tag' => array(
  7. 'name' => 'tag',
  8. 'type' => 'textbox',
  9. 'group' => 'primary',
  10. 'label' => __( 'Hook Tag', 'ninja-forms' ),
  11. 'placeholder' => '',
  12. 'value' => '',
  13. 'width' => 'full',
  14. 'use_merge_tags' => array(
  15. 'include' => array(
  16. 'calcs',
  17. ),
  18. ),
  19. ),
  20. );