Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. <span class='hide' itemprop="name">{$author['members_display_name']}</span>
  2. <ul class='basic_info'>
  3. <if test="avatar:|:$author['member_id']">
  4. <li class='avatar'>
  5. <if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
  6. <a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'>
  7. </if>
  8. <if test="hasVariable:|:$this->settings['member_topic_avatar_max']">
  9. <img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' />
  10. <else />
  11. <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
  12. </if>
  13. <if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
  14. </a>
  15. </if>
  16. </li>
  17. <else />
  18. <li class='avatar'>
  19. <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
  20. </li>
  21. </if>
  22. <if test="rankimage:|:$author['member_rank_img']">
  23. <li class='group_icon'>
  24. <if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'">
  25. <img src='{$author['member_rank_img']}' alt='' />
  26. <else />
  27. {$author['member_rank_img']}
  28. </if>
  29. </li>
  30. </if>
  31. </ul>
  32.  
  33. <if test="authorcfields:|:$author['custom_fields'] != """>
  34. <ul class='user_fields'>
  35. <if test="authorwarn:|:$author['show_warn']">
  36. <li>
  37. <if test="hasWarningId:|:$options['wl_id']">
  38. <img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
  39. </if>
  40. <a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a>
  41. </li>
  42. </if>
  43. <if test="postCount:|:$author['member_id']">
  44. <li>
  45. <span class="ft">Posturi</span> <span class="fc">{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
  46. </li>
  47. <li>
  48. <span class="ft">Reputatie</span> <span class="fc">{parse expression="$this->lang->formatNumber( intval( $author['pp_reputation_points'] ) )"}</span>
  49. </li>
  50. </if>
  51. <li>
  52. <span class="ft">Inregistrare:</span> <span class="fc">{parse date="$author['joined']" format="DATE"}</span>
  53. </li>
  54. <foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">
  55. <foreach loop="customFields:$author['custom_fields'][ $group ] as $field">
  56. <if test="$field != ''">
  57. <li>
  58. {$field}
  59. </li>
  60. </if>
  61. </foreach>
  62. </foreach>
  63. </ul>
  64. </if>
  65.  
  66. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement