According to the manual the files should follow:
Code: Select all
Zend/Db.php
Zend/Controller/Front.phpCode: Select all
class Zend_View {}
class Zend_View_Helper {}Code: Select all
/application/controllers/IndexController.php
/application/models/Album.phpCode: Select all
class Album extends Zend_Db_Table { }Code: Select all
class Application_Models_Album extends Zend_Db_Table { }Why no more mapping of class names to directories?
And on a related note. If I have three directory models/, controllers/ and views/ and for each "entity" I have classes in each of those, how should I call the files and the classes?
because to me
Code: Select all
models/Album.php
with class Album {}
controllers/Album.php
with class Album.php
and
views/Album.php
with yet another class Album {}