end-form-row.php
2 years ago
end-form.php
2 years ago
end-page.php
2 years ago
field-column.php
2 years ago
field-description.php
2 years ago
field-label.php
2 years ago
field-message.php
2 years ago
field-row.php
2 years ago
messages.php
2 years ago
prev-page-button.php
2 years ago
start-form-row.php
2 years ago
start-page.php
2 years ago
end-form.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * End form template |
| 4 | */ |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | if ( isset( $form_id ) ) : |
| 12 | // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 13 | <div class="jet-form-builder-messages-wrap" data-form-id="<?php echo absint( $form_id ); ?>"></div> |
| 14 | <?php endif; ?> |
| 15 | </form> |
| 16 | <?php |
| 17 |