Advertisement
Guest User

Untitled

a guest
May 16th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. <div id='branding'>
  2. <div class='main_width'>
  3. <div id='logo'>
  4. <if test="brandingBar:|:ipsRegistry::$applications[ $this->registry->getCurrentApplication() ]['hasCustomHeader']">
  5. {parse template="overwriteHeader" group="{current_app}_global" params=""}
  6. <else />
  7. {parse template="defaultHeader" group="global" params=""}
  8. </if>
  9. </div>
  10. <!-- ::: APPLICATION TABS ::: -->
  11. <div id='primary_nav' class='clearfix'>
  12. <ul class='ipsList_inline' id='community_app_menu'>
  13. <a href="http://web.archive.org/web/20160331212348/http://pukawka.pl"><img style="float: right;margin-top: 14px; margin-right: 7px;" src="http://web.archive.org/web/20160331212348im_/http://i.imgur.com/k6QSOmZ.png"></a>
  14. <if test="showhomeurl:|:$this->settings['home_url'] AND $this->settings['home_name']">
  15. <li id='nav_home' class='left'><a href='{$this->settings['home_url']}' title='{$this->lang->words['homepage_title']}' rel="home">{$this->settings['home_name']}</a></li>
  16. </if>
  17. <if test="hasCustomPrimaryNavigation:|:!empty($header_items['primary_navigation_menu'])">
  18. {$header_items['primary_navigation_menu']}
  19. <else />
  20. <if test="applicationsloop:|:is_array($header_items['applications']) AND count($header_items['applications'])">
  21. <foreach loop="applications:$header_items['applications'] as $data">
  22. <if test="showingapp:|:$data['app_show']">
  23. <php>
  24. $SQL = $this->DB->query('SELECT * FROM `_GW_Konta` WHERE `Online` = 1');
  25. $licznik = $this->DB->getTotalRows( $SQL );
  26.  
  27. </php>
  28. {parse variable="appActive" default="" oncondition="$data['app_active']" value="active"}
  29. <li id='nav_app_{$data['app_dir']}' class="{parse variable="appActive"}"><a href='{parse url="{$data['app_link']}" seotitle="{$data['app_seotitle']}" template="{$data['app_template']}" base="{$data['app_base']}"}' title='{parse expression="sprintf( $this->lang->words['go_to_prefix'], IPSLib::getAppTitle($data['app_dir']) )"}'>{IPSLib::getAppTitle($data['app_dir'])} <if test="$data['app_dir'] == 'gamecp'"> <span class="ipsHasNotifications" style="font-size:1em;left:auto;top:-9px;right:-10px;text-shadow:none !important;position: static; margin-left: 3px; -webkit-box-shadow: none; -ms-box-shadow: none; -moz-box-shadow: none; box-shadow: none; padding: 5px; background: rgba(0,0,0,0.3); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; border-radius: 2px; color: #941e40 !important;"><b>{$licznik}</b></span> </if></a></li>
  30.  
  31. </if>
  32. </foreach>
  33. </if>
  34. </if>
  35. <li id='nav_other_apps' style='display: none'>
  36. <a href='#' class='ipbmenu' id='more_apps'>{$this->lang->words['more_apps']} <img src='{$this->settings['img_url']}/useropts_arrow.png' /></a>
  37. </li>
  38. </ul>
  39. </div>
  40. </div>
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement