Exemplo n.º 1
0
 public function __construct($id, $config = [])
 {
     //        if (empty($user)) {
     //            throw new InvalidParamException('User is empty.');
     //        }
     $user = User::findOne($id);
     $this->_user = $user;
     parent::__construct($config);
 }
Exemplo n.º 2
0
 /**
  * Получение ФИО пользователя
  * @param integer $id
  * @return mixed
  */
 public function actionGetName($id)
 {
     $model = User::findOne($id);
     if ($model !== null) {
         $result = $model->name;
     } else {
         $result = false;
     }
     return $result;
 }
Exemplo n.º 3
0
$this->title = 'Приём к врачу';
$this->params['breadcrumbs'][] = ['label' => 'График', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="records-view">

    <h1><?php 
echo Html::encode($this->title);
?>
</h1>

    <p>
        <?php 
if (!Yii::$app->user->isGuest && $model->reserved) {
    echo Html::a('Изменить', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']);
    echo Html::a('Удалить', ['delete', 'id' => $model->id], ['class' => 'btn btn-danger', 'data' => ['confirm' => 'Удалить запись?', 'method' => 'post']]);
    //            if (!$model->visited)
    //            {
    $id = $model->id;
    echo Html::a('Посещение', ['records/add-visit', 'id' => $id], ['class' => 'btn btn-success']);
    //            }
}
?>
    </p>

    <?php 
echo DetailView::widget(['model' => $model, 'attributes' => ['id', ['attribute' => 'specialist.doctor.name', 'label' => 'Врач', 'format' => 'raw', 'value' => Html::a($model->specialist->doctor->name, ['/specialists/view', 'id' => $model->specialist_id], ['title' => $model->specialist->doctor->description])], ['attribute' => 'specialist.occupation.name', 'label' => 'Специальность'], ['attribute' => 'start_time'], ['attribute' => 'name'], ['attribute' => 'phone'], ['attribute' => 'email'], ['attribute' => 'reserved', 'format' => 'raw', 'value' => $model->reserved ? '<span class="label label-success">Да</span>' : '<span class="label label-danger">Нет</span>'], ['attribute' => 'visited', 'format' => 'raw', 'value' => $model->visited ? '<span class="label label-success">Да</span>' : '<span class="label label-danger">Нет</span>'], ['attribute' => 'user_id', 'format' => 'html', 'value' => $model->user_id ? User::findOne($model->user_id)->name : 'Интернет-пользователь'], ['attribute' => 'visit_type', 'label' => 'Тип посещения', 'visible' => !is_null($model->visit_type), 'value' => $model->visit_type ? 'Договор страхования' : 'Наличные'], ['attribute' => 'insurer_id', 'label' => 'Страховщик', 'visible' => is_numeric($model->insurer_id), 'value' => $model->insurer_id ? $model->insurer->name : 'Не задано'], 'created_at', 'updated_at']]);
?>

</div>