is their any common method to add extension to my yii project?
how can i add extension to my yii please explain the steps
is their any common method to add extension to my yii project ? how
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“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.