Blame view

frontend/views/accounts/_team_form.php 2.12 KB
02524a34   Yarik   test
1
2
3
4
5
6
7
8
  <?php
      /**
       * @var Team     $team
       * @var string[] $department
       * @var string[] $country
       */
      use common\models\Team;
      use common\widgets\ImageUploader;
b16ed95f   Yarik   test
9
      use kartik\select2\Select2;
02524a34   Yarik   test
10
11
12
      use mihaildev\ckeditor\CKEditor;
      use yii\helpers\Html;
      use yii\jui\DatePicker;
b16ed95f   Yarik   test
13
      use yii\web\JsExpression;
02524a34   Yarik   test
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
      use yii\widgets\ActiveForm;
  
      $this->title = 'Мой профиль';
      $this->params[ 'breadcrumbs' ][] = $this->title;
  ?>
  <h1><?= $this->title ?></h1>
  
  <?php
      $form = ActiveForm::begin();
  ?>
  
  <?= $form->field($team, 'lastname')
           ->textInput() ?>
  
  <?= $form->field($team, 'firstname')
           ->textInput() ?>
  
  <?= $form->field($team, 'middlename')
           ->textInput() ?>
  
  <?= $form->field($team, 'link')
           ->textInput() ?>
  
  <?= $form->field($team, 'position')
           ->textInput() ?>
  
  <?= $form->field($team, 'department_id')
           ->dropDownList($department) ?>
  
  <?= $form->field($team, 'experience_from', [ 'template' => "{label}, с {input} года \n{hint}\n{error}" ])
           ->input('number') ?>
  
b16ed95f   Yarik   test
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  <?=
      $form->field($team, 'country_id')->widget(Select2::classname(), [
          'options' => ['placeholder' => 'Выбор страны ...'],
          'pluginOptions' => [
              'allowClear' => true,
              'minimumInputLength' => 3,
              'ajax' => [
                  'url' => \yii\helpers\Url::to(['site/country']),
                  'dataType' => 'json',
                  'data' => new JsExpression('function(params) { return {q:params.term}; }')
              ],
              'escapeMarkup' => new JsExpression('function (markup) { return markup; }'),
              'templateResult' => new JsExpression('function(country) { return country.text; }'),
              'templateSelection' => new JsExpression('function (country) { return country.text; }'),
          ],
      ]);
  ?>
02524a34   Yarik   test
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  
  <?= ImageUploader::widget([
      'model'   => $team,
      'field'   => 'photo',
      'width'   => 100,
      'height'  => 100,
      'multi'   => false,
      'gallery' => $team->photo,
      'name'    => 'Загрузить фото',
  ]); ?>
  
  <?= Html::submitButton('Добавить') ?>
  
  <?php
      $form->end();
  ?>