0 follower

Summary

We have completed the milestone 1. Let's summarize what we have done so far:

  1. We identified the requirements to be fulfilled;
  2. We installed the Yii framework;
  3. We created a skeleton application;
  4. We designed and created the blog database;
  5. We modified the application configuration by adding the database connection;
  6. We generated the code that implements the basic CRUD operations for both posts and comments;
  7. We modified the authentication method to check against the tbl_user table.

For a new project, most of the time will be spent in step 1 and 4 for this first milestone.

Although the code generated by the gii tool implements fully functional CRUD operations for a database table, it often needs to be modified in practical applications. For this reason, in the next two milestone, our job is to customize the generated CRUD code about posts and comments so that it reaches our initial requirements.

In general, we first modify the model class file by adding appropriate validation rules and declaring relational objects. We then modify the controller action and view code for each individual CRUD operation.

Found a typo or you think this page needs improvement?
Edit it on github !