tags:

views:

24

answers:

1

What's Yii's way of implementing modular functionality to use from Controllers, as there are Helpers and Libraries on Kohana and CodeIgniter?

A: 

I think for 3rd party "added" modular functionality you are looking for Yii's "Extensions".

An extension is a modular piece of code that could be anything: a widget, behavior, etc. They are for Controllers, Models, again: anything. Yii has many chunks of modular functionality built in, for instance Yii's Form widgets are like Cake's form "Helpers". But if you are looking for something not in the Framework already check out Extensions.

Explanation of Extensions

Yii Extension Library/Repository

thaddeusmt