Source for file AutoLoader.php
Documentation is available at AutoLoader.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 6: * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- 7: *
- 8: * This source file is subject to the "Nette license" that is bundled
- 9: * with this package in the file license.txt.
- 10: *
- 11: * For more information please see http://nettephp.com
- 12: *
- 18: */
- 28: /**
- 29: * Auto loader is responsible for loading classes and interfaces.
- 30: *
- 34: */
- 36: {
- 45: /**
- 46: * Try to load the requested class.
- 49: */
- 51: {
- 53: }
- 57: /**
- 58: * Return all registered autoloaders.
- 60: */
- 62: {
- 64: }
- 68: /**
- 69: * Register autoloader.
- 71: */
- 73: {
- 76: }
- 80: }
- 84: /**
- 85: * Unregister autoloader.
- 87: */
- 89: {
- 92: }
- 96: /**
- 97: * Handles autoloading of classes or interfaces.
- 100: */
- 103: }