This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/includes/kohana/modules/userguide/guide/about.mvc.md
2011-05-03 09:49:01 +10:00

380 B

(Hierarchical) Model View Controller

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).

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!

[!!] Stub