Просмотр файла index.php

Размер файла: 7.15Kb
  1. <?php
  2. define('_IN_JOHNCMS', 1);
  3.  
  4. $headmod = 'lib';
  5. $textl = 'Библиотека';
  6. require_once ("../incfiles/core.php");
  7. require_once ("./inc/conf.php");
  8. // Ограничиваем доступ к Библиотеке
  9. if (!$set['mod_lib'] && $rights < 7)
  10. $error = 'Библиотека закрыта';
  11. elseif ($set['mod_lib'] == 1 && !$user_id)
  12. $error = 'Доступ в Библиотеку открыт только <a href="../in.php">авторизованным</a> посетителям';
  13. if ($error) {
  14. require_once ("../incfiles/head.php");
  15. echo '<div class="rmenu"><p>' . $error . '</p></div>';
  16. require_once ("../incfiles/end.php");
  17. exit;
  18. }
  19. require_once ("../incfiles/head.php");
  20. if($rights == 5 || $rights >= 6)
  21. {
  22. echo '<div class="gmenu"><a href="admin.php"><strong>Управление библиотекой</strong></a></div>';
  23. $co = mysql_result(mysql_query("select COUNT(*) from `library` where `moder` = '0' and `type` = 'file'"),0);
  24. if($co > 0)
  25. {
  26. echo '<div class="bmenu"><strong>'.$co.'</strong> статей ожидают модерации перейти к ним <a href="mod.php">&gt;&gt;&gt;</a></div>';
  27. }
  28. }
  29. echo '<small><img src="img/bar.png" alt=""/><a href="pop.php?">Популярные книги</a><br/>';
  30. echo '<img src="img/new.png" alt=""/><a href="new.php?">Новые книги</a></small><br/>';
  31. if(empty($id))
  32. {
  33. echo '<div class="phdr">Библиотека</div>';
  34. }else{
  35. ////////////////////////////////////////////////////////////
  36. // Получаем структуру каталогов //
  37. ////////////////////////////////////////////////////////////
  38. $tree = array();
  39. $dirid = $id;
  40. while ($dirid != '0' && $dirid != "") {
  41. $req = mysql_query("SELECT `name`,`fid` FROM `library` WHERE `type` = 'dir' and `id` = '" . $dirid . "' LIMIT 1");
  42. $res = mysql_fetch_array($req);
  43. $tree[] = '<a href="index.php?id=' . $dirid . '">' . $res['name'] . '</a>';
  44. $dirid = $res['fid'];
  45. }
  46. krsort($tree);
  47. $cdir = array_pop($tree);
  48. echo '<div class="phdr"><a href="index.php">Библиотека</a> | ';
  49. foreach ($tree as $value) {
  50. echo $value . ' | ';
  51. }
  52. echo '<b>' . strip_tags($cdir) . '</b></div>';
  53. }
  54.  
  55. $totaldir = mysql_result(mysql_query("select COUNT(*) from `library` where `type` = 'dir' and `fid` = '".$id."'"),0);
  56. $totalfile = mysql_result(mysql_query("select COUNT(*) from `library` where `type` = 'file' and `fid` = '".$id."' and `moder` = '1'"),0);
  57. $total = $totaldir + $totalfile;
  58. if($total > 0)
  59. {
  60. $sql = mysql_query("select * from `library` where `fid` = '".$id."' order by `type` ASC, `name` ASC, `file` ASC LIMIT ".$start.",".$kol_file."");
  61. while($mas = mysql_fetch_array($sql))
  62. {
  63. if($totaldir > 0 && $mas['type'] == 'dir')
  64. {
  65. echo '<div class="list1">';
  66. echo '&raquo;<img src="./img/'.($mas['type2'] == "YES" ? 'folder_user' : 'folder').'.png" alt="" /><a href="index.php?id='.$mas['id'].'">'.htmlentities($mas['name'],ENT_QUOTES,'utf-8').'</a>';
  67. $count = 0;
  68. $countnew = 0;
  69. $count = mysql_result(mysql_query("select COUNT(*) from `library` where `type` = 'file' and `path` LIKE '".$mas['path']."%' and `moder` = '1'"),0);
  70. $countnew = mysql_result(mysql_query("select COUNT(*) from `library` where `type` = 'file' and `path` LIKE '".$mas['path']."%' and `time` > '".($realtime -($new_fil * 24 * 3600) )."' and `moder` = '1'"),0);
  71. echo '('.intval($count);
  72. if($countnew !== "0"){ echo '/<span class="red">+'.intval($countnew).'</span>)';}else{echo ')';}
  73. if(!empty($mas['opis']))
  74. {
  75. echo '<div class="sub">'.htmlentities($mas['opis'],ENT_QUOTES,'utf-8').'</div>';
  76. }
  77. echo '</div>';
  78. }
  79. if($totalfile > 0 && $mas['type'] == 'file' && $mas['moder'] == "1")
  80. {
  81. echo '<div class="list2">';
  82. echo '&deg;<img src="./img/page_white_text.png" alt="" /><a href="read.php?id='.$mas['id'].'">'.htmlentities($mas['name'],ENT_QUOTES,'utf-8').'</a>';
  83. $c = mysql_result(mysql_query("select COUNT(*) from `lib_file` where `fid` = '".$mas['id']."'"),0);
  84. if($c > 0)
  85. {
  86. $sql1 = mysql_query("select * from `lib_file` where `fid` = '".$mas['id']."'");
  87. echo '<br/>';
  88. echo '<small>Прикрепленные файлы:<br/>';
  89. while($res = mysql_fetch_array($sql1))
  90. {
  91. echo '<a href="file.php?act=look&amp;id='.$res['id'].'">'.htmlentities($res['name'],ENT_QUOTES,'utf-8').'</a>, ';
  92. }
  93. echo '</small>';
  94. }
  95. if(!empty($mas['opis']))
  96. {
  97. echo '<div class="sub">'.htmlentities($mas['opis'],ENT_QUOTES,'utf-8').'</div>';
  98. }else{echo '<br/>';}
  99. echo '<ul><small><li><strong>Прочтений:</strong>'.$mas['count'].'<br/></li>';
  100. $us = mysql_fetch_array(mysql_query("select `name` from `users` where `id` = '".$mas['id_avtor']."' LIMIT 1"));
  101. $re1 = explode(":",$mas['rating']);
  102. $tit=round($re1[1]/2/$re1[0],1);
  103. echo '<li><strong>Оценка:</strong> '.$tit.'/<b>'.(int)$re1[0].'</b></li>';
  104. echo '<li><strong>Добавил:</strong>'.htmlentities($us['name'],ENT_QUOTES,'utf-8').'</li>';
  105. echo '<li><a href="komm.php?id='.$mas['id'].'">Комментарии</a>['.count_komm($mas['id']).']</li>';
  106. echo '</small></ul>';
  107. echo '</div>';
  108. }
  109. }
  110. }else{
  111. echo '<strong>В даной категории статей нету!!!</strong><br/>';
  112. }
  113. echo '<div class="phdr">';
  114. if ($totaldir > 0)
  115. echo 'Папок: ' . $totaldir;
  116. echo '&nbsp;&nbsp;&nbsp;';
  117. if ($totalfile > 0)
  118. echo 'Файлов: ' . $totalfile;
  119. echo '</div>';
  120. // Постраничная навигация
  121. if ($total > $kol_file) {
  122. echo '<p>' . pagenav('index.php?id=' . $id . '&amp;', $start, $total, $kol_file) . '</p>';
  123. }
  124. echo '<div class="gmenu"><small><ul><li><a href="set.php?">Настройки отображения</a></li>';
  125. echo '<li><a href="serch.php?">Поиск книг</a></li>';
  126. echo '<li><a href="stat.php?">Статистика библиотеки</a></li>';
  127. echo '<li><a href="zak.php?">Стол заказов</a></li></ul></small>';
  128. echo '</div>';
  129. echo '<hr/>';
  130. if(!empty($_GET['id']))
  131. {
  132. $sq = mysql_fetch_array(mysql_query("select `type2` from `library` where `id` = '".$id."' LIMIT 1"));
  133. if($sq['type2'] == "YES" && $user_id)
  134. {
  135. echo '<div class="func"><ul>';
  136. echo '<li><a href="file.php?act=upload&amp;id='.$id.'">Выгрузить статью</a></li>';
  137. echo '<li><a href="file.php?act=newstat&amp;id='.$id.'">Написать статью</a></li>';
  138. echo '</ul></div>';
  139. }
  140. }
  141.  
  142.  
  143. require_once ('../incfiles/end.php');
  144. ?>