Advertisement
Guest User

Untitled

a guest
Mar 30th, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.01 KB | None | 0 0
  1. <xf:comment>These macros are used in the message user info container</xf:comment>
  2. <xf:macro name="ah_gamerprofiles_icons" arg-user="!">
  3. <xf:css src="ah_gamerprofiles.less" />
  4.  
  5. <xf:set var="$ahGPStatus" value="{{ property('ahGPStatus') }}" />
  6. <xf:if contentcheck="true">
  7. <div class="ah-gp-icons-container">
  8. <xf:contentcheck>
  9.  
  10. <xf:comment>PlayStation</xf:comment>
  11. <xf:if is="{$user.Profile.custom_fields.ah_playstation} AND $ahGPStatus.ah_playstation">
  12. <a href="https://gamercards.exophase.com/psn/user/{$user.Profile.custom_fields.ah_playstation}" class="ah-gp-trigger ah-gp-icon" target="_blank">
  13. <xf:fa icon="fab fa-playstation" />
  14.  
  15. <img src="//card.exophase.com/psn/{$user.Profile.custom_fields.ah_playstation}.png" class="ah-gp-profile" />
  16. </a>
  17. </xf:if>
  18.  
  19. <xf:comment>Xbox</xf:comment>
  20. <xf:if is="{$user.Profile.custom_fields.ah_xbox} AND $ahGPStatus.ah_xbox">
  21. <a href="https://gamercards.exophase.com/xbox/user/{$user.Profile.custom_fields.ah_xbox}" class="ah-gp-trigger ah-gp-icon" target="_blank">
  22. <xf:fa icon="fab fa-xbox" />
  23.  
  24. <img src="//card.exophase.com/xbox/{$user.Profile.custom_fields.ah_xbox}.png" class="ah-gp-profile" />
  25. </a>
  26. </xf:if>
  27.  
  28. <xf:comment>Steam</xf:comment>
  29. <xf:if is="{$user.Profile.custom_fields.ah_steam} AND $ahGPStatus.ah_steam">
  30. <a href="https://gamercards.exophase.com/steam/user/{$user.Profile.custom_fields.ah_steam}" class="ah-gp-trigger ah-gp-icon" target="_blank">
  31. <xf:fa icon="fab fa-steam" />
  32.  
  33. <img src="//card.exophase.com/steam/{$user.Profile.custom_fields.ah_steam}.png" class="ah-gp-profile" />
  34. </a>
  35. </xf:if>
  36.  
  37. <xf:comment>Discord</xf:comment>
  38. <xf:if is="{$user.Profile.custom_fields.ah_discord} AND $ahGPStatus.ah_discord">
  39. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_discord}">
  40. <xf:fa icon="fab fa-discord" />
  41. </span>
  42. </xf:if>
  43.  
  44. <xf:comment>Twitch</xf:comment>
  45. <xf:if is="{$user.Profile.custom_fields.ah_twitch} AND $ahGPStatus.ah_twitch">
  46. <a href="https://www.twitch.tv/{$user.Profile.custom_fields.ah_twitch}" class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_twitch}" target="_blank">
  47. <xf:fa icon="fab fa-twitch" />
  48. </a>
  49. </xf:if>
  50.  
  51. <xf:comment>Mixer</xf:comment>
  52. <xf:if is="{$user.Profile.custom_fields.ah_mixer} AND $ahGPStatus.ah_mixer">
  53. <a href="https://www.mixer.com/{$user.Profile.custom_fields.ah_mixer}" class="ah-gp-icon ah-gp-icon--mixer" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_mixer}" target="_blank">
  54. <svg viewBox="0 0 24 20">
  55. <path d="M5.68,3.96L11.41,11.65C11.55,11.84 11.55,12.1 11.41,12.29L5.65,20L5.5,20.18C4.76,21 3.47,21.07 2.64,20.31C1.85,19.59 1.79,18.37 2.43,17.5L6.56,11.97L2.46,6.47C1.83,5.62 1.88,4.39 2.67,3.67L2.82,3.54C3.73,2.87 5,3.05 5.68,3.96M18.32,3.96C19,3.05 20.27,2.87 21.18,3.54L21.33,3.67C22.12,4.39 22.17,5.61 21.54,6.47L17.44,11.97L21.57,17.5C22.21,18.36 22.15,19.59 21.36,20.31C20.53,21.07 19.24,21 18.5,20.18L18.35,20L12.59,12.29C12.45,12.1 12.45,11.84 12.59,11.65L18.32,3.96Z" />
  56. </svg>
  57. </a>
  58. </xf:if>
  59.  
  60. <xf:comment>YouTube</xf:comment>
  61. <xf:if is="{$user.Profile.custom_fields.ah_youtube} AND $ahGPStatus.ah_youtube">
  62. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_youtube}">
  63. <xf:fa icon="fab fa-youtube" />
  64. </span>
  65. </xf:if>
  66.  
  67. <xf:comment>Facebook</xf:comment>
  68. <xf:if is="{$user.Profile.custom_fields.facebook} AND $ahGPStatus.facebook">
  69. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.facebook}">
  70. <xf:fa icon="fab fa-facebook" />
  71. </span>
  72. </xf:if>
  73.  
  74. <xf:comment>Twitter</xf:comment>
  75. <xf:if is="{$user.Profile.custom_fields.twitter} AND $ahGPStatus.twitter">
  76. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.twitter}">
  77. <xf:fa icon="fab fa-twitter" />
  78. </span>
  79. </xf:if>
  80.  
  81. <xf:comment>Skype</xf:comment>
  82. <xf:if is="{$user.Profile.custom_fields.skype} AND $ahGPStatus.skype">
  83. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.skype}">
  84. <xf:fa icon="fab fa-skype" />
  85. </span>
  86. </xf:if>
  87.  
  88. <xf:comment>Spotify</xf:comment>
  89. <xf:if is="{$user.Profile.custom_fields.ah_spotify} AND $ahGPStatus.ah_spotify">
  90. <a href="https://open.spotify.com/user/{$user.Profile.custom_fields.ah_spotify}" class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_spotify}" target="_blank">
  91. <xf:fa icon="fab fa-spotify" />
  92. </a>
  93. </xf:if>
  94.  
  95. </xf:contentcheck>
  96. </div>
  97. </xf:if>
  98.  
  99. </xf:macro>
  100.  
  101. <xf:comment>These macros are used in the member tooltip</xf:comment>
  102. <xf:macro name="ah_gamerprofiles_tooltip_icons" arg-user="!">
  103. <xf:css src="ah_gamerprofiles.less" />
  104.  
  105. <xf:set var="$ahGPStatus" value="{{ property('ahGPStatus') }}" />
  106. <xf:if contentcheck="true">
  107. <div class="ah-gp-icons-container">
  108. <xf:contentcheck>
  109.  
  110. <xf:comment>PlayStation</xf:comment>
  111. <xf:if is="{$user.Profile.custom_fields.ah_playstation} AND $ahGPStatus.ah_playstation">
  112. <a href="https://gamercards.exophase.com/psn/user/{$user.Profile.custom_fields.ah_playstation}" class="ah-gp-trigger ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_playstation}" target="_blank">
  113. <xf:fa icon="fab fa-playstation" />
  114. </a>
  115. </xf:if>
  116.  
  117. <xf:comment>Xbox</xf:comment>
  118. <xf:if is="{$user.Profile.custom_fields.ah_xbox} AND $ahGPStatus.ah_xbox">
  119. <a href="https://gamercards.exophase.com/xbox/user/{$user.Profile.custom_fields.ah_xbox}" class="ah-gp-trigger ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_xbox}" target="_blank">
  120. <xf:fa icon="fab fa-xbox" />
  121. </a>
  122. </xf:if>
  123.  
  124. <xf:comment>Steam</xf:comment>
  125. <xf:if is="{$user.Profile.custom_fields.ah_steam} AND $ahGPStatus.ah_steam">
  126. <a href="https://gamercards.exophase.com/steam/user/{$user.Profile.custom_fields.ah_steam}" class="ah-gp-trigger ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_steam}" target="_blank">
  127. <xf:fa icon="fab fa-steam" />
  128. </a>
  129. </xf:if>
  130.  
  131. <xf:comment>Discord</xf:comment>
  132. <xf:if is="{$user.Profile.custom_fields.ah_discord} AND $ahGPStatus.ah_discord">
  133. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_discord}">
  134. <xf:fa icon="fab fa-discord" />
  135. </span>
  136. </xf:if>
  137.  
  138. <xf:comment>Twitch</xf:comment>
  139. <xf:if is="{$user.Profile.custom_fields.ah_twitch} AND $ahGPStatus.ah_twitch">
  140. <a href="https://www.twitch.tv/{$user.Profile.custom_fields.ah_twitch}" class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_twitch}" target="_blank">
  141. <xf:fa icon="fab fa-twitch" />
  142. </a>
  143. </xf:if>
  144.  
  145. <xf:comment>Mixer</xf:comment>
  146. <xf:if is="{$user.Profile.custom_fields.ah_mixer} AND $ahGPStatus.ah_mixer">
  147. <a href="https://www.mixer.com/{$user.Profile.custom_fields.ah_mixer}" class="ah-gp-icon ah-gp-icon--mixer" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_mixer}" target="_blank">
  148. <svg viewBox="0 0 24 20">
  149. <path d="M5.68,3.96L11.41,11.65C11.55,11.84 11.55,12.1 11.41,12.29L5.65,20L5.5,20.18C4.76,21 3.47,21.07 2.64,20.31C1.85,19.59 1.79,18.37 2.43,17.5L6.56,11.97L2.46,6.47C1.83,5.62 1.88,4.39 2.67,3.67L2.82,3.54C3.73,2.87 5,3.05 5.68,3.96M18.32,3.96C19,3.05 20.27,2.87 21.18,3.54L21.33,3.67C22.12,4.39 22.17,5.61 21.54,6.47L17.44,11.97L21.57,17.5C22.21,18.36 22.15,19.59 21.36,20.31C20.53,21.07 19.24,21 18.5,20.18L18.35,20L12.59,12.29C12.45,12.1 12.45,11.84 12.59,11.65L18.32,3.96Z" />
  150. </svg>
  151. </a>
  152. </xf:if>
  153.  
  154. <xf:comment>YouTube</xf:comment>
  155. <xf:if is="{$user.Profile.custom_fields.ah_youtube} AND $ahGPStatus.ah_youtube">
  156. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_youtube}">
  157. <xf:fa icon="fab fa-youtube" />
  158. </span>
  159. </xf:if>
  160.  
  161. <xf:comment>Facebook</xf:comment>
  162. <xf:if is="{$user.Profile.custom_fields.facebook} AND $ahGPStatus.facebook">
  163. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.facebook}">
  164. <xf:fa icon="fab fa-facebook" />
  165. </span>
  166. </xf:if>
  167.  
  168. <xf:comment>Twitter</xf:comment>
  169. <xf:if is="{$user.Profile.custom_fields.twitter} AND $ahGPStatus.twitter">
  170. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.twitter}">
  171. <xf:fa icon="fab fa-twitter" />
  172. </span>
  173. </xf:if>
  174.  
  175. <xf:comment>Skype</xf:comment>
  176. <xf:if is="{$user.Profile.custom_fields.skype} AND $ahGPStatus.skype">
  177. <span class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.skype}">
  178. <xf:fa icon="fab fa-skype" />
  179. </span>
  180. </xf:if>
  181.  
  182. <xf:comment>Spotify</xf:comment>
  183. <xf:if is="{$user.Profile.custom_fields.ah_spotify} AND $ahGPStatus.ah_spotify">
  184. <a href="https://open.spotify.com/user/{$user.Profile.custom_fields.ah_spotify}" class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_spotify}" target="_blank">
  185. <xf:fa icon="fab fa-spotify" />
  186. </a>
  187. </xf:if>
  188.  
  189. </xf:contentcheck>
  190. </div>
  191. </xf:if>
  192.  
  193. </xf:macro>
  194.  
  195. <xf:macro name="ah_gamerprofiles_message" arg-user="!">
  196. <xf:if is="$xf.visitor.canViewIcons()">
  197. <xf:if is="{$user.Profile.custom_fields.ah_playstation} OR
  198. {$user.Profile.custom_fields.ah_xbox} OR
  199. {$user.Profile.custom_fields.ah_steam} OR
  200. {$user.Profile.custom_fields.ah_discord} OR
  201. {$user.Profile.custom_fields.ah_twitch} OR
  202. {$user.Profile.custom_fields.ah_mixer} OR
  203. {$user.Profile.custom_fields.ah_youtube} OR
  204. {$user.Profile.custom_fields.facebook} OR
  205. {$user.Profile.custom_fields.twitter} OR
  206. {$user.Profile.custom_fields.skype} OR
  207. {$user.Profile.custom_fields.twitter}">
  208. <div class="ah-gp-message">
  209. <xf:macro template="ah_gamerprofiles_macros" name="ah_gamerprofiles_icons" arg-user="{$user}" />
  210. </div>
  211. </xf:if>
  212. </xf:if>
  213. </xf:macro>
  214.  
  215. <xf:macro name="ah_gamerprofiles_member_tooltip" arg-user="!">
  216. <xf:if is="$xf.visitor.canViewIcons()">
  217. <xf:if is="(property('ahGPTooltip'))">
  218. <xf:if is="{$user.Profile.custom_fields.ah_playstation} OR
  219. {$user.Profile.custom_fields.ah_xbox} OR
  220. {$user.Profile.custom_fields.ah_steam} OR
  221. {$user.Profile.custom_fields.ah_discord} OR
  222. {$user.Profile.custom_fields.ah_twitch} OR
  223. {$user.Profile.custom_fields.ah_mixer} OR
  224. {$user.Profile.custom_fields.ah_youtube} OR
  225. {$user.Profile.custom_fields.facebook} OR
  226. {$user.Profile.custom_fields.twitter} OR
  227. {$user.Profile.custom_fields.skype} OR
  228. {$user.Profile.custom_fields.twitter}">
  229. <div class="ah-gamerprofiles-memberTooltip">
  230. <xf:macro template="ah_gamerprofiles_macros" name="ah_gamerprofiles_tooltip_icons" arg-user="{$user}" />
  231. </div>
  232. </xf:if>
  233. </xf:if>
  234. </xf:if>
  235. </xf:macro>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement