fieldset.php 816 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. if ( ! defined( 'WPSEO_VERSION' ) ) {
  8. header( 'Status: 403 Forbidden' );
  9. header( 'HTTP/1.1 403 Forbidden' );
  10. exit();
  11. }
  12. /**
  13. * @var string $id ID attribute for the fieldset.
  14. * @var string $attributes Additional attributes for the fieldset.
  15. * @var string $legend_attributes Additional attributes for the legend.
  16. * @var string $legend_content The legend text.
  17. * @var string $content The fieldset content, i.e. a set of logically grouped form controls.
  18. */
  19. ?>
  20. <fieldset id="<?php echo esc_attr( $id ); ?>"<?php echo $attributes; ?>>
  21. <legend id="<?php echo esc_attr( $id . '-legend' ); ?>"<?php echo $legend_attributes; ?>><?php echo esc_html( $legend_content ); ?></legend>
  22. <?php echo $content; ?>
  23. </fieldset>