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
start-page.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Start from page template |
| 4 | * |
| 5 | * @var Form_Break $this |
| 6 | */ |
| 7 | |
| 8 | use Jet_Form_Builder\Form_Break; |
| 9 | |
| 10 | // If this file is called directly, abort. |
| 11 | if ( ! defined( 'WPINC' ) ) { |
| 12 | die; |
| 13 | } |
| 14 | |
| 15 | printf( |
| 16 | '<div class="jet-form-builder-page %1$s" data-page="%2$s" data-page-offset="%3$s">', |
| 17 | esc_attr( $hidden_class ), |
| 18 | esc_attr( $this->get_current() ), |
| 19 | absint( $this->get_page_offset() ) |
| 20 | ); |
| 21 |