is their any common method to add extension to my yii project? how can i add extension to my yii please explain the steps
相关问题
- Yii - Eliminate default controller ID for a module
- how to change csrf field id from YII_CSRF_TOKEN to
- Load balancing with Yii sessions
- Yii uploading pictures
- How to Auto Login and Redirect After Registration
相关文章
- Can you run console jobs from yii2-basic?
- How to do a bulk database insert in Yii2?
- Yii2 - check if the user is logged in view
- Call static method from a string name in PHP
- radioButtonList checked by default
- Postgres error: null value in column “id” - during
- Add column as link in CGridView
- yii : how to ajax update the cgridview
"Application Configuration" plays important role when installing extensions. By default this configuration will be in a php file (i.e protected/config/main.php )
Yii is a framework, not an application ... so you need to edit the php code yourself.
1) some people develops extensions as Yii components where you need to add these extensions into "components" configuration.
2) Some people develops extensions as Yii modules, you need to add these modules into "modules" configuration.
3) Some people develops behaviors, where you need to edit your Controller or model classes to add these behaviors.
there are many other types of extensions as well... you need to follow the guidelines provided by extension developer.