index.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. require("../class/connect.php");
  3. require("../class/db_sql.php");
  4. require("../class/q_functions.php");
  5. require("../data/dbcache/class.php");
  6. require LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. eCheckCloseMods('print');//关闭模块
  10. $id=(int)$_GET['id'];
  11. $classid=(int)$_GET['classid'];
  12. if(empty($id)||empty($classid))
  13. {
  14. printerror("ErrorUrl","history.go(-1)",1);
  15. }
  16. $mid=$class_r[$classid]['modid'];
  17. $tbname=$class_r[$classid][tbname];
  18. if(empty($tbname)||InfoIsInTable($tbname))
  19. {
  20. printerror("ErrorUrl","history.go(-1)",1);
  21. }
  22. $r=$empire->fetch1("select * from {$dbtbpre}ecms_".$tbname." where id='$id' limit 1");
  23. if(empty($r['id'])||$r['classid']!=$classid)
  24. {
  25. printerror("ErrorUrl","history.go(-1)",1);
  26. }
  27. //副表
  28. $finfor=$empire->fetch1("select ".ReturnSqlFtextF($mid)." from {$dbtbpre}ecms_".$tbname."_data_".$r[stb]." where id='$r[id]' limit 1");
  29. $r=array_merge($r,$finfor);
  30. //权限
  31. if($r['groupid']||$class_r[$classid]['cgtoinfo'])
  32. {
  33. include('../data/dbcache/MemberLevel.php');
  34. define('empirecms','wm_chief');
  35. define('PageCheckLevel','wm_chief');
  36. $check_tbname=$tbname;
  37. $check_infoid=$id;
  38. $check_classid=$classid;
  39. $check_path="../../";
  40. $checkinfor=$r;
  41. include("../class/CheckLevel.php");
  42. }
  43. //使用模板
  44. if($_GET['tempid'])
  45. {
  46. $tempid=(int)$_GET['tempid'];
  47. $tempnum=$empire->gettotal("select count(*) as total from ".GetTemptb("enewsprinttemp")." where tempid='$tempid'");
  48. $tempid=$tempnum?$tempid:$public_r['defprinttempid'];
  49. }
  50. else
  51. {
  52. $mod_tempr=$empire->fetch1("select printtempid from {$dbtbpre}enewsmod where mid='$mid'");
  53. $tempid=$mod_tempr[printtempid]?$mod_tempr[printtempid]:$public_r['defprinttempid'];
  54. }
  55. if(empty($tempid))
  56. {
  57. $tempid=1;
  58. }
  59. //存文本
  60. $savetxtf=$emod_r[$mid]['savetxtf'];
  61. if($savetxtf&&$r[$savetxtf])
  62. {
  63. $r[$savetxtf]=GetTxtFieldText($r[$savetxtf]);
  64. }
  65. //分页字段
  66. $pagef=$emod_r[$mid]['pagef'];
  67. if($pagef&&$r[$pagef])
  68. {
  69. $r[$pagef]=str_replace('[!--empirenews.page--]','',$r[$pagef]);
  70. $r[$pagef]=str_replace('[/!--empirenews.page--]','',$r[$pagef]);
  71. }
  72. $url=ReturnClassLink($r[classid])."&nbsp;>&nbsp;".$fun_r['zw'];
  73. //标题链接
  74. $titleurl=sys_ReturnBqTitleLink($r);
  75. //标题图片
  76. if(empty($r[titlepic]))
  77. {
  78. $r[titlepic]=$public_r[newsurl].'e/data/images/notimg.gif';
  79. }
  80. $bclassid=$class_r[$classid][bclassid];
  81. @require(ECMS_PATH.'e/data/filecache/template/print'.$tempid.'.php');
  82. db_close();
  83. $empire=null;
  84. ?>