action-button.php
2 years ago
calculated-field.php
2 years ago
color-picker-field.php
2 years ago
date-field.php
2 years ago
datetime-field.php
2 years ago
form-break-field.php
2 years ago
group-break-field.php
2 years ago
heading-field.php
2 years ago
hidden-field.php
2 years ago
image-preview.php
2 years ago
media-field.php
2 years ago
number-field.php
2 years ago
preset-media-field.php
2 years ago
progress-bar.php
2 years ago
range-field.php
2 years ago
textarea-field.php
2 years ago
time-field.php
2 years ago
group-break-field.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Group break template |
| 4 | */ |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | $this->add_attribute( 'class', 'jet-form-builder__group-break' ); |
| 12 | $this->add_attribute( 'class', $args['class_name'] ); |
| 13 | ?> |
| 14 | <div class="jet-form-builder__field-wrap"> |
| 15 | <div <?php $this->render_attributes_string(); ?>></div> |
| 16 | </div> |
| 17 | <?php |
| 18 |