Hello, I need to use sub-modules in the modules directory structure. However, I do not have a concrete idea about how to implement it. A sample structure: ... +modules --admin -----blog --------controllers --------models --------views -----news --------controllers --------models --------views --front
or even something: +modules --admin -----controllers ------------blog -----------------addAction.php -----------------editAction.php -----------------approveAction.php ------------news -----------------addAction.php -----------------editAction.php -----------------approveAction.php -----models -----views --front Any idea about how to implement such directory structure in Zend Framework? Thanks
