Source for file IPresenterLoader.php

Documentation is available at IPresenterLoader.php

  1. 1: <?php
  2. 2:  
  3. 3: /**
  4. 4:  * Nette Framework
  5. 5:  *
  6. 6:  * @copyright  Copyright (c) 2004, 2010 David Grudl
  7. 7:  * @license    http://nettephp.com/license  Nette license
  8. 8:  * @link       http://nettephp.com
  9. 9:  * @category   Nette
  10. 10:  * @package    Nette\Application
  11. 11:  */
  12. 12:  
  13. 13:  
  14. 14:  
  15. 15: /**
  16. 16:  * Responsible for loading presenters.
  17. 17:  *
  18. 18:  * @copyright  Copyright (c) 2004, 2010 David Grudl
  19. 19:  * @package    Nette\Application
  20. 20:  */
  21. 22: {
  22. 23:  
  23. 24:     /**
  24. 25:      * @param  string  presenter name
  25. 26:      * @return string  class name
  26. 27:      * @throws InvalidPresenterException
  27. 28:      */
  28. 29:     function getPresenterClass($name);
  29. 30:  
  30. 31: }