Gii-モデルの作成
Giiでモデルを作成するには−
<?php
namespace app\models;
use app\components\UppercaseBehavior;
use Yii;
/**
* This is the model class for table "user".
*
* @property integer $id
* @property string $name
* @property string $email
*/
class MyUser extends \yii\db\ActiveRecord {
/**
* @inheritdoc
*/
public static function tableName() {
return 'user';
}
/**
* @inheritdoc
*/
public function rules() {
return [
[['name', 'email'], 'string', 'max' => 255]
];
}
/**
* @inheritdoc
*/
public function attributeLabels() {
return [
'id' => 'ID',
'name' => 'Name',
'email' => 'Email',
];
}
}
?>
CRUDの生成
MyUserモデルのCRUDを生成してみましょう。
Step 1 − CRUDジェネレーターインターフェイスを開き、フォームに入力します。
Step 2−次に、「プレビュー」ボタンと「生成」をクリックします。URLに移動しますhttp://localhost:8080/index.php?r=my-user、すべてのユーザーのリストが表示されます。
Step 3 −URLを開く http://localhost:8080/index.php?r=my-user/create。ユーザー作成フォームが表示されます。