<?php/** * @package WPSEO\Admin */if(!defined('WPSEO_VERSION')){header('Status: 403 Forbidden');header('HTTP/1.1 403 Forbidden');exit();}/** * @var string $id ID attribute for the fieldset. * @var string $attributes Additional attributes for the fieldset. * @var string $legend_attributes Additional attributes for the legend. * @var string $legend_content The legend text. * @var string $content The fieldset content, i.e. a set of logically grouped form controls. */?><fieldsetid="<?phpechoesc_attr($id);?>"<?phpecho$attributes;?>><legendid="<?phpechoesc_attr($id);?>-legend"<?phpecho$legend_attributes;?>><?phpechoesc_html($legend_content);?></legend><?phpecho$content;?></fieldset>