Gii - Creazione di un modello

Per creare un modello in 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',
         ];
      }
   }
?>

Generazione di CRUD

Generiamo CRUD per il modello MyUser.

Step 1 - Apri l'interfaccia del generatore CRUD, compila il modulo.

Step 2- Quindi, fare clic sul pulsante "Anteprima" e "Genera". Vai all'URLhttp://localhost:8080/index.php?r=my-user, vedrai l'elenco di tutti gli utenti.

Step 3 - Apri l'URL http://localhost:8080/index.php?r=my-user/create. Dovresti vedere un modulo di creazione utente.