Assuming I have a folder layout like the following:
Code: Select all
/application
/MyApp
/model
/view
/controller
/document_root
/images
/styles
.htaccess
index.php
/library
/ZendCode: Select all
class MyApp_Controller_IndexController extends Zend_Controller_Action
{
//...
}Code: Select all
class IndexController extends Zend_Controller_Action
{
//...
}Like if I wanted to reuse the "MyApp"-folder as a library in another application?
PS. I'm aware that the framework manual is frequently updated, but it still seemed worth discussing.