How can I use the autoloader to find the class file 'templater' that lives in the same directory as the Zend directory?
|_ include
|_Zend
|_Templater.php
|_Smarty
|_root directory
I have stored the Zend folder and the smarty folder and other classes in de include folder outside the root directory.
I finally figured out how Zend could locate it's classes by adding it's location to the include_path.
Now I am stuck with the templaterclass that will be used by smarty.
How can I make the autoloader aware of the templaterclass and later on the smarty classes in the smartyfolder?