fieldset.php 855 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. *
  7. * @uses string $id ID attribute for the fieldset.
  8. * @uses string $attributes Additional attributes for the fieldset.
  9. * @uses string $legend_attributes Additional attributes for the legend.
  10. * @uses string $legend_content The legend text.
  11. * @uses string $content The fieldset content, i.e. a set of logically grouped form controls.
  12. */
  13. _deprecated_file( __FILE__, '11.9' );
  14. if ( ! defined( 'WPSEO_VERSION' ) ) {
  15. header( 'Status: 403 Forbidden' );
  16. header( 'HTTP/1.1 403 Forbidden' );
  17. exit();
  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>