"repositories": [
{
"type": "vcs",
"url": "https://github.com/2amigos/yii2-transliterator-helper"
}
],
"require": {
"2amigos/yii2-transliterator-helper": "*",
},
<?php
use app\components\FlashWidget;
use app\helpers\UserSettingHelper;
use app\models\UserBalance;
$this->title = 'Ваш аккаунт';
?>
<?= FlashWidget::widget(); ?>
<!-- ============================================== CONTENT ============================================== -->
<div class="col-xs-12 col-sm-12 col-md-9 homebanner-holder">
<!-- ========================================== SECTION – HERO ========================================= -->
<td style="vertical-align: top;">
<div style="margin-top: 10px;">
<span style="color: #00b2d7; font-weight: bold; font-size: 20px;">
<?= $user->getUsername() ?>
</span>
</div>
<div style="margin-top: 18px;">
<label><?= \Yii::t('app', 'Имя') ?></label>
</div>
<div style="margin-top: 5px;">
<?php if (UserSettingHelper::getName($setting) == '') { ?>
<span style="color: #e0e0e0;"><?= \Yii::t('app', 'Вы не указали своё имя') ?></span>
<?php } else { ?>
<?= UserSettingHelper::getName($setting) ?>
<?php } ?>
</div>
<div style="margin-top: 18px;">
<label><?= \Yii::t('app', 'Фамилия') ?></label>
</div>
<div style="margin-top: 5px;">
<?php if (UserSettingHelper::getFirstname($setting) == '') { ?>
<span style="color: #e0e0e0;"><?= \Yii::t('app', 'Вы не указали свою фамилию') ?></span>
<?php } else { ?>
<?= UserSettingHelper::getFirstname($setting) ?>
<?php } ?>
</div>
<?php if ($setting->getCountryString() != '') { ?>
<div style="margin-top: 18px;">
<label><?= \Yii::t('app', 'Страна') ?></label>
</div>
<div style="margin-top: 5px;">
<?= $setting->getCountryString() ?>
</div>
<?php } ?>
<div style="margin-top: 18px;">
<label><?= \Yii::t('app', 'Номер телефона') ?></label>
</div>
<div style="margin-top: 5px;">
<?php if (UserSettingHelper::getPhone($setting) == '') { ?>
<span style="color: #e0e0e0;"><?= \Yii::t('app', 'Вы не указали номер телефона') ?></span>
<?php } else { ?>
<?= UserSettingHelper::getPhone($setting) ?>
<?php } ?>
</div>
<?php if ($setting->getGenderString() != '') { ?>
<div style="margin-top: 18px;">
<label><?= \Yii::t('app', 'Пол') ?></label>
</div>
<div style="margin-top: 5px;">
<?= $setting->getGenderString() ?>
</div>
<?php } ?>
<?php if ($setting->getBirthDateString() !== false) { ?>
<div style="margin-top: 18px;">
<label><?= \Yii::t('app', 'Дата рождения') ?></label>
</div>
<div style="margin-top: 5px;">
<?= $setting->getBirthDateString() ?>
</div>
<?php } ?>
<div style="margin-top: 5px;">
<label><?= \Yii::t('app', 'Ваш баланс') ?></label>
<div style="margin-top: 5px;">
<?= \Yii::$app->user->identity->balance->get(UserBalance::CURRENCY_USD) ?>
</div>
</div>
</td>
</div>
</div>
</div>
</div>