コード例 #1
0
ファイル: GroupSearch.php プロジェクト: BeforyDeath/tfa
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = GroupDomain::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'name', $this->name]);
     return $dataProvider;
 }
コード例 #2
0
ファイル: _form.php プロジェクト: BeforyDeath/tfa
<div class="domain-form">

    <?php 
$form = ActiveForm::begin();
?>

    <?php 
echo $form->field($model, 'name')->textInput(['maxlength' => true]);
?>

    <?php 
echo $form->field($model, 'language_id')->dropdownList(\backend\models\Language::find()->select(['name', 'id'])->indexBy('id')->column(), ['prompt' => 'Language:'])->label('Language Name');
?>

    <?php 
echo $form->field($model, 'group_id')->dropdownList(\backend\models\GroupDomain::find()->select(['name', 'id'])->indexBy('id')->column(), ['prompt' => 'Group Domain:'])->label('Group Domain Name');
?>

    <div class="form-group">
        <?php 
echo Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
    </div>

    <?php 
ActiveForm::end();
?>

</div>