| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <div class="row">
- <div class="col-lg-12 col-xl-12">
- <div class="container-page-wrapper shodowed bordered">
- <div class="container-page-container">
- <div class="text-center dashboard-avatar-wrapper">
- <?php echo $this->helper->setAvatarView($this->user->getAvatar(), ['class'=>'dashboard-avatar', 'timestamp'=>md5($this->user->getUserField('userUpdatedAt'))]); ?>
- <div class="dashboard-name-wrapper"><h5><?php echo $this->user->getUserField('userName'), ' ', $this->user->getUserField('userSurname'); ?><?php echo $this->user->getUserStatus() == STATUS_TECH_ID ? ' <span class="icon-wrench"></span>' : ''; ?></h5></div>
- <div><small><b><?php echo $this->helper->setCommaList($this->user->getUserField('userRolesLocale')); ?></b></small></div>
-
- <?php if (!empty($this->user->getUserField('medicalSpecialties'))): ?>
- <div><small><?php echo implode(', ', $this->user->getUserField('medicalSpecialties')); ?></small></div>
- <?php endif; ?>
-
- <?php $userCountryName = $this->user->getUserField('userCountryName'); ?>
- <?php if($userCountryName != ''): ?>
- <div><small><?php echo $this->helper->getUserFlag($this->user->getUserField('userCountryCode'), 20), ' ', $userCountryName, ' / ', $this->user->getUserField('userDefaultString'); ?></small></div>
- <?php else: ?>
- <div><small><?php echo $this->user->getUserField('userDefaultString'); ?></small></div>
- <?php endif; ?>
- </div>
-
- <?php /*
- <div class="user-more-info text-center">
- <img src="/images/arrow-down.svg" alt="<?php echo _('Show more information'); ?>" title="<?php echo _('Show more information'); ?>">
- </div>
- */ ?>
-
- <?php if($showBottomLink): ?>
- <div class="clearfix margin-top-10">
- <a href="<?php echo $this->helper->setHash('profile/'.time()); ?>" class="float-right"><?php echo _('Edit Profile'); ?></a>
- </div>
- <?php endif; ?>
-
- <?php //debug($this->user->getUser()); ?>
-
- </div>
- </div>
- </div>
- </div>
|