PluginProbe
Sendy / trunk
Sendy vtrunk
3.4.6 3.4.7 trunk 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 All 32 releases
sendy / resources / views / admin / settings / fields / dropdown.php

dropdown.php in Sendy trunk, at resources/views/admin/settings/fields/dropdown.php

19 lines 446 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (! defined('ABSPATH')) {
4 exit;
5 }
6
7 /**
8 * @var string $option_name
9 * @var array<string,string> $options
10 */
11
12 ?>
13
14 <select name="<?php echo esc_html($option_name); ?>">
15 <?php foreach ($options as $sendy_key => $sendy_option) : ?>
16 <option value="<?php echo esc_html($sendy_key); ?>" <?php selected($sendy_key, get_option($option_name)); ?>><?php echo esc_html($sendy_option); ?></option>
17 <?php endforeach; ?>
18 </select>
19