Helix_Website/wp-content/plugins/wp-event-manager/templates/form-fields/button-options-field.php

1 line
927 B
PHP

<?php
/**
* Button Options Field. Example definition:
*
* 'test_options' => array(
* 'label' => __( 'Test Button Options', 'wp-event-manager' ),
* 'type' => 'button-options',
* 'required' => false, *
* 'priority' => 1,
* 'options' => array(
* 'option1' => 'This is option 1',
* 'option2' => 'This is option 2'
* )
* )
*/
foreach ( $field['options'] as $option_key => $value ) : ?>
<input type="button" name="<?php echo esc_attr( isset( $field['name'] ) ? $field['name'] : $key ); ?>" id="<?php echo esc_attr( $key ); ?>" attribute="<?php echo esc_attr( isset( $field['attribute'] ) ? $field['attribute'] : '' ); ?>" value="<?php echo esc_attr( $option_key ); ?>" /> <?php echo esc_html( $value ); ?>
<?php endforeach; ?>
<?php if ( ! empty( $field['description'] ) ) : ?><small class="description"><?php echo $field['description']; ?></small><?php endif; ?>