What is the difference between component, extension & module in Yii

后端 未结 2 1099
谎友^
谎友^ 2021-01-31 16:49

I am new to Yii framework, and just came across module, extension & component inside protected folder.

Can anyone

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-31 17:29

    Components are the classes which can help you write the business logic on the basis of your models. Suppose all of your model files are using the same logic, So that logic can be written inside component instead of writing for each controller.

    Extensions are like the libraries, which basically are not dependent on your models, and hence can be reused anywhere in current or later projects. For example writing any email extension.

    Module is a self-contained software unit that consists of models, views, controllers and other supporting components. In many aspects, a module resembles to an application. The main difference is that a module cannot be deployed alone and it must reside inside of an application. Users can access the controllers in a module like they do with normal application controllers.

    I hope it will help you.

提交回复
热议问题