<?php/** * @package WPSEO\Admin */if(!defined('WPSEO_VERSION')){header('Status: 403 Forbidden');header('HTTP/1.1 403 Forbidden');exit();}/** * @var string $attributes Additional attributes for the select * @var string $name Value for the select name attribute. * @var string $id ID attribute for the select. * @var array $options Array with the options to show. * @var string $selected The current set options. */?><select<?phpecho$attributes;?>name="<?phpechoesc_attr($name);?>"id="<?phpechoesc_attr($id);?>"><?phpforeach($optionsas$option_attribute_value=>$option_html_value):?><optionvalue="<?phpechoesc_attr($option_attribute_value);?>"<?phpechoselected($selected,$option_attribute_value,false);?>><?phpechoesc_html($option_html_value);?></option><?phpendforeach;?></select>