About HMVC in codeigner and cakephp?

I heard today from a friend of mine about HMVC in codignitor .. I am surprised at this feature .. it helps a lot in big projects .. and I am sad because I cannot find any article or anything to tell me what HMVC is in cakephp..so i have two questions .. anyone have an idea for HMVC in cakephp? Is this lead me to learn codignitor? Plugins like HMVC?

codignitor HMVC login example

<?php
hmvcExample/application/modules/login/controllers/  
hmvcExample/application/modules/login/models/  
hmvcExample/application/modules/login/views/ 
ci_day6/application/controllers/login.php  
ci_day6/application/models/membership_model.php  
ci_day6/application/views/login_form.php  
ci_day6/application/views/signup_form.php  
ci_day6/application/views/signup_successful.php  

?>

      

+2


source to share


1 answer


http://book.cakephp.org/view/890/Understanding-Model-View-Controller

HMVC is only an extension of MVC and is partially supported by plugins, elements, etc. In 2.1 there are even available viewers available.



The whole HMVC concept is dubious though, imo. The core principles of Cake MVC work well enough.

+2


source







All Articles