File "dropdown.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/the-events-calendar/common/src/admin-views/widgets/components/fields/dropdown.php
File size: 1.66 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Admin View: Widget Component Dropdown field.
 *
 * Administration Views cannot be overwritten by default from your theme.
 *
 * See more documentation about our views templating system.
 *
 * @link    http://evnt.is/1aiy
 *
 * @version 4.12.18
 *
 * @var string                      $label      Label for the dropdown.
 * @var string                      $value      Value for the dropdown.
 * @var string                      $id         ID of the dropdown.
 * @var string                      $name       Name attribute for the dropdown.
 * @var string                      $dependency The dependency attributes for the control wrapper.
 * @var array<array<string,string>> $options    An array of options in the format
 *                                              [
 *                                                  'value => string|int,
 *                                                  'text' => string
 *                                              ]
 */

?>
<div
	class="tribe-widget-form-control tribe-widget-form-control--dropdown"
	<?php
	// Not escaped - contains html (data-attr="value").
	echo $dependency; // phpcs:ignore
	?>
>
	<label
		class="tribe-widget-form-control__label"
		for="<?php echo esc_attr( $id ); ?>"
	>
		<?php echo esc_html( $label ); ?>
	</label>
	<select
		id="<?php echo esc_attr( $id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="tribe-widget-form-control__input widefat"
	>
		<?php foreach ( $options as $option ) { ?>
			<option
				value="<?php echo esc_attr( $option['value'] ); ?>"
				<?php selected( $value, $option['value'] ); ?>
			>
				<?php echo esc_html( $option['text'] ); ?>
			</option>
		<?php } ?>
	</select>
</div>