%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/water/vendor/dektrium/yii2-user/views/profile/ |
Upload File : |
<?php /* * This file is part of the Dektrium project. * * (c) Dektrium project <http://github.com/dektrium> * * For the full copyright and license information, please view the LICENSE.md * file that was distributed with this source code. */ use yii\helpers\Html; /** * @var \yii\web\View $this * @var \dektrium\user\models\Profile $profile */ $this->title = empty($profile->name) ? Html::encode($profile->user->username) : Html::encode($profile->name); $this->params['breadcrumbs'][] = $this->title; ?> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6"> <div class="row"> <div class="col-sm-6 col-md-4"> <?= Html::img($profile->getAvatarUrl(230), [ 'class' => 'img-rounded img-responsive', 'alt' => $profile->user->username, ]) ?> </div> <div class="col-sm-6 col-md-8"> <h4><?= $this->title ?></h4> <ul style="padding: 0; list-style: none outside none;"> <?php if (!empty($profile->location)): ?> <li> <i class="glyphicon glyphicon-map-marker text-muted"></i> <?= Html::encode($profile->location) ?> </li> <?php endif; ?> <?php if (!empty($profile->website)): ?> <li> <i class="glyphicon glyphicon-globe text-muted"></i> <?= Html::a(Html::encode($profile->website), Html::encode($profile->website)) ?> </li> <?php endif; ?> <?php if (!empty($profile->public_email)): ?> <li> <i class="glyphicon glyphicon-envelope text-muted"></i> <?= Html::a(Html::encode($profile->public_email), 'mailto:' . Html::encode($profile->public_email)) ?> </li> <?php endif; ?> <li> <i class="glyphicon glyphicon-time text-muted"></i> <?= Yii::t('user', 'Joined on {0, date}', $profile->user->created_at) ?> </li> </ul> <?php if (!empty($profile->bio)): ?> <p><?= Html::encode($profile->bio) ?></p> <?php endif; ?> </div> </div> </div> </div>