| Current Path : /var/www/html/hr/views/menu/ |
| Current File : /var/www/html/hr/views/menu/_search.php |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model app\models\MenuSearch */
/* @var $form yii\widgets\ActiveForm */
$this->registerCss(".topsection-search label{margin-right:1em;}#menusearch-searchstring{width:300px;}");
?>
<div class="topsection-search mt-4 mb-4">
<?php $form = ActiveForm::begin(['action' => ['index'], 'method' => 'get', 'options' => ['class' => 'form-inline form-search']]); ?>
<?= $form->field($model, 'searchstring')->textInput(); ?>
<div class="form-group">
<?= Html::submitButton('Search', ['class' => 'btn btn-brand']) ?>
<?= Html::a('Reset', ['/menu/index'], ['class' => 'btn btn-outline-brand']) ?>
<?= Html::a('Menu Tree', ['tree'], ['class' => 'btn btn-outline-brand']) ?>
<?= Html::a('Add ' . $this->title, ['create', 'returnUrl' => Yii::$app->controller->action->id], ['class' => 'btn btn-brand']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>