You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839
  1. <div class="row">
  2. <div class="col-lg-12 col-xl-12">
  3. <div class="container-page-wrapper shodowed bordered">
  4. <div class="container-page-container">
  5. <div class="text-center dashboard-avatar-wrapper">
  6. <?php echo $this->helper->setAvatarView($this->user->getAvatar(), ['class'=>'dashboard-avatar', 'timestamp'=>md5($this->user->getUserField('userUpdatedAt'))]); ?>
  7. <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>
  8. <div><small><b><?php echo $this->helper->setCommaList($this->user->getUserField('userRolesLocale')); ?></b></small></div>
  9. <?php if (!empty($this->user->getUserField('medicalSpecialties'))): ?>
  10. <div><small><?php echo implode(', ', $this->user->getUserField('medicalSpecialties')); ?></small></div>
  11. <?php endif; ?>
  12. <?php $userCountryName = $this->user->getUserField('userCountryName'); ?>
  13. <?php if($userCountryName != ''): ?>
  14. <div><small><?php echo $this->helper->getUserFlag($this->user->getUserField('userCountryCode'), 20), ' ', $userCountryName, ' / ', $this->user->getUserField('userDefaultString'); ?></small></div>
  15. <?php else: ?>
  16. <div><small><?php echo $this->user->getUserField('userDefaultString'); ?></small></div>
  17. <?php endif; ?>
  18. </div>
  19. <?php /*
  20. <div class="user-more-info text-center">
  21. <img src="/images/arrow-down.svg" alt="<?php echo _('Show more information'); ?>" title="<?php echo _('Show more information'); ?>">
  22. </div>
  23. */ ?>
  24. <?php if($showBottomLink): ?>
  25. <div class="clearfix margin-top-10">
  26. <a href="<?php echo $this->helper->setHash('profile/'.time()); ?>" class="float-right"><?php echo _('Edit Profile'); ?></a>
  27. </div>
  28. <?php endif; ?>
  29. <?php //debug($this->user->getUser()); ?>
  30. </div>
  31. </div>
  32. </div>
  33. </div>