PageInterface.php 508 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @package Grav\Common\Page
  4. *
  5. * @copyright Copyright (c) 2015 - 2023 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. namespace Grav\Common\Page\Interfaces;
  9. use Grav\Common\Media\Interfaces\MediaInterface;
  10. /**
  11. * Class implements page interface.
  12. */
  13. interface PageInterface extends
  14. PageContentInterface,
  15. PageFormInterface,
  16. PageRoutableInterface,
  17. PageTranslateInterface,
  18. MediaInterface,
  19. PageLegacyInterface
  20. {
  21. }