admin-conditional.php 412 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Yoast SEO plugin file.
  4. *
  5. * @package Yoast\YoastSEO\Conditionals
  6. */
  7. namespace Yoast\WP\Free\Conditionals;
  8. /**
  9. * Conditional that is only met when in the admin.
  10. */
  11. class Admin_Conditional implements Conditional {
  12. /**
  13. * Returns whether or not this conditional is met.
  14. *
  15. * @return boolean Whether or not the conditional is met.
  16. */
  17. public function is_met() {
  18. return \is_admin();
  19. }
  20. }