| 1 |
<?php |
| 2 |
/** |
| 3 |
* View for submit button field in form builder |
| 4 |
* |
| 5 |
* @since 6.9 |
| 6 |
* |
| 7 |
* @package Formidable |
| 8 |
* |
| 9 |
* @var array $field Field array. |
| 10 |
*/ |
| 11 |
|
| 12 |
if ( ! defined( 'ABSPATH' ) ) { |
| 13 |
die( 'You are not allowed to call this page directly.' ); |
| 14 |
} |
| 15 |
?> |
| 16 |
<p class="frm-form-button"> |
| 17 |
<button id="field_label_<?php echo intval( $field['id'] ); ?>" class="frm_button_submit" disabled> |
| 18 |
<?php echo esc_html( $field['name'] ); ?> |
| 19 |
</button> |
| 20 |
</p> |
| 21 |
|