Difference between #2 and #5 of
MVC primer and 5 minute form walkthrough

Revision #5 has been created by rix.rix. on May 11, 2012, 4:18:08 PM with the memo:

shorter title
« previous (#2) next (#6) »

Changes

Title changed

Simple 5 minute form walkthrough tutorial

Category unchanged

Tutorials

Yii version unchanged

Tags unchanged

Forms, tutorial

Content changed

[...]
Go to the Model Generator and enter the information as required. Now go ahead and generate the code.

Note, if Gii is unable to create the model it might be because your webserver process does not have the necessary permissions to write to the models folder.

It's worth noting here that you might want to modify the attributeLabels() method in your model.  Otherwise, when you come to create your form it will use the defaults listed here which are simply the tidied-up names of your database fields.
 
 
### **Step 3: Create a controller**
Now we have a model we need to create a controller. You can think of a controller as mediating between a model and a view.
[...]
- Your controller is using protected/views/layouts/column2.php to render your view (protected/views/your_controller/index.php)

### **Step 4: Create
the forma view**
Return to Gii and click on the 'Form Generator' link.
[...]
~~~

### **Step 5: View
ing the form**
Instead of rendering index.php, we might just want to view the form directly. Edit the following method in your DetailsController:

~~~
/*
* Lists all models.
[...]
8 0
6 followers
Viewed: 30 193 times
Version: 1.1
Category: Tutorials
Written by: rix.rix.
Last updated by: rix.rix.
Created on: May 11, 2012
Last updated: 12 years ago
Update Article

Revisions

View all history