alllibs.html.php 934 B

123456789101112131415161718192021222324
  1. <?php if($type != 'book'):?>
  2. <?php include $app->getModuleRoot() . 'doc/view/alllibs.html.php';?>
  3. <?php else:;?>
  4. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  5. <div class="main-row fade" id="mainRow">
  6. <?php include $app->getModuleRoot() . 'doc/view/side.html.php';?>
  7. <?php if($this->cookie->browseType == 'bylist'):?>
  8. <?php include dirname(__FILE__) . '/alllibsbylist.html.php';?>
  9. <?php else:?>
  10. <?php include dirname(__FILE__) . '/alllibsbygrid.html.php';?>
  11. <?php endif;?>
  12. </div>
  13. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
  14. <?php endif;?>
  15. <?php $spliter = (empty($this->app->user->feedback) && !$this->cookie->feedbackView) ? true : false;?>
  16. <?php if(!$spliter):?>
  17. <script>
  18. $('.side-col .cell .side-footer').remove();
  19. $('.side-col .cell .nav li').each(function(index)
  20. {
  21. if(index == 0 || index == 1) $(this).remove();
  22. })
  23. </script>
  24. <?php endif;?>