We can put "./application/modules" into the include_path.
But we cannot use the Zend_Loader to load models using the
following syntax: Zend_Loader('{modulename}_models_{ModelName}').
Because Zend_Loader checks for the class name to match via
the given parameter.
right, so if I:
* put "./application/modules" in my include_path
* make ./application/modules/users/models/user.php:
class users_models_user extends Zend_Db_Table {}
Zend_Loader will know how to load it, right? so isn't the answer as simple as naming your classes to match their directories?
-L