ActionSettings.php 589 B

12345678910111213141516171819202122232425262728293031
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. return apply_filters( 'ninja_forms_action_settings', array(
  3. /*
  4. * Label
  5. */
  6. 'label' => array(
  7. 'name' => 'label',
  8. 'type' => 'textbox',
  9. 'group' => 'primary',
  10. 'label' => __( 'Action Name', 'ninja-forms' ),
  11. 'placeholder' => '',
  12. 'width' => 'full',
  13. 'value' => '',
  14. ),
  15. /*
  16. * Active
  17. */
  18. 'active' => array(
  19. 'name' => 'active',
  20. 'type' => 'toggle',
  21. 'label' => __( 'Active', 'ninja-forms' ),
  22. 'value' => 1
  23. ),
  24. ) );