NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Loader.php 578B

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. * This file is part of Mustache.php.
  4. *
  5. * (c) 2010-2017 Justin Hileman
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Mustache Template Loader interface.
  12. */
  13. interface Mustache_Loader
  14. {
  15. /**
  16. * Load a Template by name.
  17. *
  18. * @throws Mustache_Exception_UnknownTemplateException If a template file is not found
  19. *
  20. * @param string $name
  21. *
  22. * @return string|Mustache_Source Mustache Template source
  23. */
  24. public function load($name);
  25. }