File "repeat-options-top.php"
Full path: /home/bud/public_html/swamp/back-end-20251126093951/repeat-options-top.php
File size: 1.01 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<p>
<label for="field_options_format_<?php echo absint( $field['id'] ); ?>">
<?php esc_html_e( 'Repeat Layout', 'formidable-pro' ); ?>
</label>
<select name="field_options[format_<?php echo absint( $field['id'] ); ?>]" id="field_options_format_<?php echo absint( $field['id'] ); ?>">
<option value=""><?php esc_html_e( 'Default: No automatic formatting', 'formidable-pro' ); ?></option>
<option value="inline" <?php selected( $field['format'], 'inline' ); ?>>
<?php esc_html_e( 'Inline: Display each field and label in one row', 'formidable-pro' ); ?>
</option>
<option value="grid" <?php selected( $field['format'], 'grid' ); ?>>
<?php esc_html_e( 'Grid: Display labels as headings above rows of fields', 'formidable-pro' ); ?>
</option>
</select>
<input type="hidden" name="field_options[form_select_<?php echo absint( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['form_select'] ); ?>" />
</p>