Merge branch 'master' of git://github.com/kohana/userguide
[kohana-userguide.git] / guide / about.mvc.md
blob4c9442d559a55f30aeaeb4589a3898494f9f2856
1 # (Hierarchical) Model View Controller
3 Model View Controller (Or MVC for short) is a popular design pattern that separates your data sources (Model) from the presentation/templates (View) and the request logic (Controller).
5 It makes it much easier to develop applications as the system is designed to maximise the code reuse, meaning you don't have to write as much!
7 [!!] Stub