New Autoloader that uses modular ClassPathMappers to map classes to filenames,
authorChuck Hagenbuch <chuck@horde.org>
Fri, 4 Jun 2010 19:37:13 +0000 (15:37 -0400)
committerChuck Hagenbuch <chuck@horde.org>
Fri, 4 Jun 2010 20:14:25 +0000 (16:14 -0400)
commit77b7ed58d745b2a404d2c6f45600449626f57130
tree5bde30b941e2515ce2a0ab441913a6c9c7db2c1d
parente61eab9e081640fb846a6a26dd23b6912df8bc07
New Autoloader that uses modular ClassPathMappers to map classes to filenames,
rather than hardcoding a lot of logic into the main Autoloader class. Also
allows more flexibility since mappers can have any logic they need in them.
framework/Autoloader/lib/Horde/Autoloader.php
framework/Autoloader/lib/Horde/Autoloader/ClassPathMapper.php [new file with mode: 0644]
framework/Autoloader/lib/Horde/Autoloader/ClassPathMapper/Default.php [new file with mode: 0644]
framework/Autoloader/lib/Horde/Autoloader/ClassPathMapper/Prefix.php [new file with mode: 0644]
framework/Autoloader/package.xml
framework/Autoloader/test/Horde/Autoloader/AllTests.php [new file with mode: 0644]
framework/Autoloader/test/Horde/Autoloader/AutoloaderTest.php [new file with mode: 0644]
framework/Autoloader/test/Horde/Autoloader/ClassPathMapper/DefaultTest.php [new file with mode: 0644]
framework/Autoloader/test/Horde/Autoloader/ClassPathMapper/PrefixTest.php [new file with mode: 0644]