PHP Classes

File: views/test-contacts/_search.php

Recommend this page to a friend!
  Classes of Uldis Nelsons   YII2 Framework PHP Init   views/test-contacts/_search.php   Download  
File: views/test-contacts/_search.php
Role: Example script
Content type: text/plain
Description: Example script
Class: YII2 Framework PHP Init
Create a project based on the YII2 from template
Author: By
Last change:
Date: 2 years ago
Size: 735 bytes
 

Contents

Class file image Download
<?php

use yii\helpers\Html;
use
yii\widgets\ActiveForm;

/**
* @var yii\web\View $this
* @var app\models\TestContactsSearch $model
* @var yii\widgets\ActiveForm $form
*/
?>

<div class="test-contacts-search">

    <?php $form = ActiveForm::begin([
   
'action' => ['index'],
   
'method' => 'get',
    ]);
?>

            <?= $form->field($model, 'id') ?>

        <?= $form->field($model, 'test_id') ?>

        <?= $form->field($model, 'phone') ?>

        <?= $form->field($model, 'email') ?>

    <div class="form-group">
        <?= Html::submitButton(Yii::t('app', 'Search'), ['class' => 'btn btn-primary']) ?>
<?= Html::resetButton(Yii::t('app', 'Reset'), ['class' => 'btn btn-default']) ?>
</div>

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

</div>