header-module.html 993 B

1234567891011121314151617181920
  1. {if !defined('SYSTEM_WELCOME_MODULE')}
  2. <div class="account-info-name">
  3. <a href="{php echo url('account/display/platform')}"><i class="wi wi-back-circle"></i></a>
  4. <span class="account-name"><a href="{php echo url('account/display/platform')}">{$_W['account']['name']}</a></span>
  5. </div>
  6. {/if}
  7. <div class="module-info-name">
  8. {if file_exists(IA_ROOT. "/addons/". $_W['current_module']['name']. "/icon-custom.jpg")}
  9. <img src="{php echo tomedia("addons/".$_W['current_module']['name']."/icon-custom.jpg")}" class="head-app-logo" onerror="this.src='./resource/images/gw-wx.gif'">
  10. {else}
  11. <img src="{php echo tomedia("addons/".$_W['current_module']['name']."/icon.jpg")}" class="head-app-logo" onerror="this.src='./resource/images/gw-wx.gif'">
  12. {/if}
  13. <span class="name">{$_W['current_module']['title']}</span>
  14. </div>
  15. <!-- 兼容历史性问题:模块内获取不到模块信息$module的问题-start -->
  16. {if defined('CRUMBS_NAV') && CRUMBS_NAV == 1}
  17. {php global $module;}
  18. {/if}
  19. <!-- end -->