Hi,
I whant to use some classes that are not part of ZF. I have a dir classes in application dir and the classes dir contains classes that are required as object or static. In Bootstrap i "load" every class.php.
Zend_Loader::loadFile('TimeZones.php', APPLICATION_PATH.'/classes/', false);
How can I have all the classes by default loaded/included from this dir?
SOLUTION for now. in Bootstrap.php
$files = scandir(APPLICATION_PATH.'/classes/');
foreach($files as $file) {
if($file[0] != '.') {
Zend_Loader::loadFile($file, APPLICATION_PATH.'/classes', false);
}
}