mvc components in codeigniter?

Posted by ajsie on Stack Overflow See other posts from Stack Overflow or by ajsie
Published on 2010-04-10T00:40:16Z Indexed on 2010/04/10 0:43 UTC
Read the original article Hit count: 330

Filed under:
|

in yii i could have mvc components (acts like an own application). could i have this too in codeigniter?

eg. in SYSTEM/APPLICATION have a folder called COMPONENTS and in there i put stand-alone applications that would be a part of the application. components like ADDRESS BOOK, MAIL, TWITTER and so on. every component folder has folders like: models, views, controllers, config etc.

so a component model extends the application model which in turn extends system's (code igniter) model. the same goes for view and controller.

i've already got a lot of these components which i want to use in codeigniter. is it good idea to place them as i said in SYSTEM/APPLICATION/COMPONENTS or is there best practice for this?

© Stack Overflow or respective owner

Related posts about mvc

Related posts about codeigniter