interface-yoast-form-element.php 251 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. /**
  8. * Generate the HTML for a form element.
  9. */
  10. interface Yoast_Form_Element {
  11. /**
  12. * Return the HTML for the form element.
  13. *
  14. * @return string
  15. */
  16. public function get_html();
  17. }