AddClass.php
53.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
<?php
define('EmpireCMSAdmin','1');
require("../class/connect.php");
require("../class/db_sql.php");
require("../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
//驗證用戶
$lur=is_login();
$logininid=$lur['userid'];
$loginin=$lur['username'];
$loginrnd=$lur['rnd'];
$loginlevel=$lur['groupid'];
$loginadminstyleid=$lur['adminstyleid'];
//ehash
$ecms_hashur=hReturnEcmsHashStrAll();
//驗證權限
CheckLevel($logininid,$loginin,$classid,"class");
$enews=ehtmlspecialchars($_GET['enews']);
if($_GET['from'])
{
$listclasslink="ListPageClass.php";
}
else
{
$listclasslink="ListClass.php";
}
$url="<a href=".$listclasslink.$ecms_hashur['whehref'].">欄目管理</a> > 增加欄目";
$zt="";
$b_ok=1;
$hiddenclass="<script>document.getElementById('smallclass').style.display='none';document.getElementById('smallclasssetinfo').style.display='none';document.getElementById('smallclasssettemp').style.display='none';document.getElementById('smallcgtoinfo').style.display='none';document.getElementById('smallclassbdinfo').style.display='none';</script>";
//初使化數據
$r[myorder]=0;
$r[listorder]="id DESC";
$r[reorder]="newstime DESC";
$islast="";
$filename0=" checked";
$filename1="";
$filename2="";
$openpl0=" checked";
$openpl1="";
$openadd0="";
$openadd1=" checked";
$r[classtype]=".html";
$r[filetype]=".html";
$r[newspath]="Y-m-d";
$r[link_num]="10";
$r[lencord]=25;
$read="";
$r[newline]=10;
$r[hotline]=10;
$r[goodline]=10;
$r[hotplline]=10;
$r[firstline]=10;
$r[maxnum]=0;
$r[addinfofen]=0;
$r[doctime]=0;
$r[down_num]=2;
$r[online_num]=2;
$checked=" checked";
$r['addreinfo']=1;
$defaultbclassid=" selected";
$islist="";
$islast="<input name=islast type=checkbox id=islast onclick='small_class(this.checked)' value='1'>是";
//複製欄目
$docopy=ehtmlspecialchars($_GET['docopy']);
if($docopy&&$enews=="AddClass")
{
$copyclass=1;
}
$ecmsfirstpost=1;
$classid=(int)$_GET['classid'];
if($enews=='EditClass')
{
$filepass=$classid;
}
else
{
$filepass=ReturnTranFilepass();
}
//修改欄目
if($enews=="EditClass"||$copyclass)
{
$ecmsfirstpost=0;
if($copyclass)
{
$thisdo="複製";
}
else
{
$thisdo="修改";
}
$read="";
$r=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$classid'");
$addr=$empire->fetch1("select * from {$dbtbpre}enewsclassadd where classid='$classid'");
if(!empty($r[bclassid]))
{$defaultbclassid="";}
$url="<a href=".$listclasslink.$ecms_hashur['whehref'].">管理欄目</a> > ".$thisdo."欄目:".$r[classname];
if($r[islist])
{$islist=" checked";}
//修改大欄目
if(!$r[islast])
{
//主欄目
if(empty($r[bclassid]))
{
$b_ok=1;
}
//中級欄目
else
{
$b_ok=1;
}
}
//終級欄目
else
{
$hiddenclass="<script>document.getElementById('bigclasssettemp').style.display='none';document.getElementById('bigclasssetclasstext').style.display='none';</script>";
$b_ok=0;
}
//終級類別
if($r[islast])
{
$islast="<b>是</b>";
$islastcheck=" checked";
}
else
{
$islast="<b>否</b>";
$islastcheck="";
}
$islast.="<input type=hidden name=islast value='".$r[islast]."'>";
if($r[filename]==1)
{
$filename0="";
$filename1=" checked";
$filename2="";
}
elseif($r[filename]==2)
{
$filename0="";
$filename1="";
$filename2=" checked";
}
else
{}
if($r[openpl])
{
$openpl0="";
$openpl1=" checked";
}
if($r[checkpl])
{
$checkpl=" checked";
}
if($r[openadd])
{
$openadd0="";
$openadd1=" checked";
}
else
{
$openadd0=" checked";
$openadd1="";
}
//欄目目錄
$mycr=GetPathname($r[classpath]);
$pripath=$mycr[1];
$classpath=$mycr[0];
$read="";
//複製欄目
if($copyclass)
{
$r[classname].="(1)";
$classpath.="1";
$read="";
$islast="<input name=islast type=checkbox id=islast onclick='small_class(this.checked)' value='1'".$islastcheck.">是";
}
if($r[checked])
{$checked=" checked";}
else
{$checked="";}
}
//系統模型
$m_sql=$empire->query("select mid,mname,usemod from {$dbtbpre}enewsmod order by myorder,mid");
while($m_r=$empire->fetch($m_sql))
{
if(empty($m_r[usemod]))
{
if($m_r[mid]==$r[modid])
{$m_d=" selected";}
else
{$m_d="";}
$mod_options.="<option value=".$m_r[mid].$m_d.">".$m_r[mname]."</option>";
}
//列表模板
$listtemp_options.="<option value=0 style='background:#99C4E3'>".$m_r[mname]."</option>";
$dtlisttemp_options.="<option value=0 style='background:#99C4E3'>".$m_r[mname]."</option>";
$lt_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewslisttemp")." where modid='$m_r[mid]'");
while($lt_r=$empire->fetch($lt_sql))
{
//靜態
if($lt_r[tempid]==$r[listtempid])
{$lt_d=" selected";}
else
{$lt_d="";}
$listtemp_options.="<option value=".$lt_r[tempid].$lt_d."> |-".$lt_r[tempname]."</option>";
//動態
if($lt_r[tempid]==$r[dtlisttempid])
{$lt_dt=" selected";}
else
{$lt_dt="";}
$dtlisttemp_options.="<option value=".$lt_r[tempid].$lt_dt."> |-".$lt_r[tempname]."</option>";
}
//搜索模板
$searchtemp.="<option value=0 style='background:#99C4E3'>".$m_r[mname]."</option>";
$st_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewssearchtemp")." where modid='$m_r[mid]'");
while($st_r=$empire->fetch($st_sql))
{
if($st_r[tempid]==$r[searchtempid])
{$st_d=" selected";}
else
{$st_d="";}
$searchtemp.="<option value=".$st_r[tempid].$st_d."> |-".$st_r[tempname]."</option>";
}
//內容模板
$newstemp_options.="<option value=0 style='background:#99C4E3'>".$m_r[mname]."</option>";
$nt_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewsnewstemp")." where modid='$m_r[mid]'");
while($nt_r=$empire->fetch($nt_sql))
{
if($nt_r[tempid]==$r[newstempid])
{$nt_d=" selected";}
else
{$nt_d="";}
$newstemp_options.="<option value=".$nt_r[tempid].$nt_d."> |-".$nt_r[tempname]."</option>";
}
}
//欄目
$fcfile="../data/fc/ListEnews.php";
$fcjsfile="../data/fc/cmsclass.js";
if(file_exists($fcjsfile)&&file_exists($fcfile))
{
$options=GetFcfiletext($fcjsfile);
$options=str_replace("<option value='$r[bclassid]'","<option value='$r[bclassid]' selected",$options);
}
else
{
$options=ShowClass_AddClass("",$r[bclassid],0,"|-",0,0);
}
//會員組
$qgroup='';
$qgbr='';
$qgi=0;
$cgroup='';
$sql1=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
while($l_r=$empire->fetch($sql1))
{
if($r[groupid]==$l_r[groupid])
{$select=" selected";}
else
{$select="";}
$group.="<option value=".$l_r[groupid].$select.">".$l_r[groupname]."</option>";
//投稿
$qgi++;
if($qgi%6==0)
{
$qgbr='<br>';
}
else
{
$qgbr='';
}
$qgchecked='';
if(strstr($r[qaddgroupid],','.$l_r[groupid].','))
{
$qgchecked=' checked';
}
$qgroup.="<input type=checkbox name=qaddgroupidck[] value='".$l_r[groupid]."'".$qgchecked.">".$l_r[groupname]." ".$qgbr;
//欄目頁權限
$cgchecked='';
if(strstr($r[cgroupid],','.$l_r[groupid].','))
{
$cgchecked=' checked';
}
$cgroup.="<input type=checkbox name=cgroupidck[] value='".$l_r[groupid]."'".$cgchecked.">".$l_r[groupname]." ".$qgbr;
}
//js模板
$jstempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewsjstemp")." order by tempid");
while($jstempr=$empire->fetch($jstempsql))
{
$select="";
if($r[jstempid]==$jstempr[tempid])
{
$select=" selected";
}
$jstemp.="<option value='".$jstempr[tempid]."'".$select.">".$jstempr[tempname]."</option>";
}
//封面模板
$classtempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewsclasstemp")." order by tempid");
while($classtempr=$empire->fetch($classtempsql))
{
$select="";
if($r[classtempid]==$classtempr[tempid])
{
$select=" selected";
}
$classtemp.="<option value='".$classtempr[tempid]."'".$select.">".$classtempr[tempname]."</option>";
}
//評論模板
$pltempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewspltemp")." order by tempid");
while($pltempr=$empire->fetch($pltempsql))
{
$select="";
if($r[pltempid]==$pltempr[tempid])
{
$select=" selected";
}
$pltemp.="<option value='".$pltempr[tempid]."'".$select.">".$pltempr[tempname]."</option>";
}
//WAP模板
$wapstyles='';
$wapstyle_sql=$empire->query("select styleid,stylename from {$dbtbpre}enewswapstyle order by styleid");
while($wapstyle_r=$empire->fetch($wapstyle_sql))
{
$select="";
if($r[wapstyleid]==$wapstyle_r[styleid])
{
$select=" selected";
}
$wapstyles.="<option value='".$wapstyle_r[styleid]."'".$select.">".$wapstyle_r[stylename]."</option>";
}
//預設投票
$infovotesql=$empire->query("select voteid,ysvotename from {$dbtbpre}enewsvotemod order by voteid desc");
while($infovoter=$empire->fetch($infovotesql))
{
$select="";
if($r[definfovoteid]==$infovoter[voteid])
{
$select=" selected";
}
$definfovote.="<option value='".$infovoter[voteid]."'".$select.">".$infovoter[ysvotename]."</option>";
}
//優化方案
$yh_options='';
$yhsql=$empire->query("select id,yhname from {$dbtbpre}enewsyh order by id");
while($yhr=$empire->fetch($yhsql))
{
$select='';
if($r[yhid]==$yhr[id])
{
$select=' selected';
}
$yh_options.="<option value='".$yhr[id]."'".$select.">".$yhr[yhname]."</option>";
}
//工作流
$workflows='';
$wfsql=$empire->query("select wfid,wfname from {$dbtbpre}enewsworkflow order by myorder,wfid");
while($wfr=$empire->fetch($wfsql))
{
$select='';
if($r[wfid]==$wfr[wfid])
{
$select=' selected';
}
$workflows.="<option value='".$wfr[wfid]."'".$select.">".$wfr[wfname]."</option>";
}
//當前使用的模板組
$thegid=GetDoTempGid();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<link rel="stylesheet" href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" type="text/css">
<link id="luna-tab-style-sheet" type="text/css" rel="stylesheet" href="adminstyle/<?=$loginadminstyleid?>/tab.winclassic.css" disabled="disabled" />
<title>管理欄目</title>
<!-- the id is not needed. It is used here to be able to change css file at runtime -->
<style type="text/css">
.dynamic-tab-pane-control .tab-page {
width: 100%;
}
.dynamic-tab-pane-control .tab-page .dynamic-tab-pane-control .tab-page {
height: 150px;
}
form {
margin: 0;
padding: 0;
}
/* over ride styles from webfxlayout */
.dynamic-tab-pane-control h2 {
font-size:12px;
font-weight:normal;
text-align: center;
width: auto;
height: 20;
}
.dynamic-tab-pane-control h2 a {
display: inline;
width: auto;
}
.dynamic-tab-pane-control a:hover {
background: transparent;
}
</style>
<script type="text/javascript" src="../data/images/tabpane.js"></script> <script type="text/javascript">
function setLinkSrc( sStyle ) {
document.getElementById( "luna-tab-style-sheet" ).disabled = sStyle != "luna";
//document.documentElement.style.background = "";
//document.body.style.background = sStyle == "webfx" ? "white" : "ThreeDFace";
}
function chgBg(obj,color){
if (document.all || document.getElementById)
obj.style.backgroundColor=color;
else if (document.layers)
obj.bgColor=color;
}
setLinkSrc( "luna" );
</script>
<script>
function small_class(mycheck)
{
if(mycheck)
{
document.getElementById('smallclass').style.display="";
document.getElementById('smallclasssetinfo').style.display="";
document.getElementById('smallclasssettemp').style.display="";
document.getElementById('bigclasssettemp').style.display="none";
document.getElementById('bigclasssetclasstext').style.display="none";
document.getElementById('smallcgtoinfo').style.display="";
document.getElementById('smallclassbdinfo').style.display="";
}
else
{
document.getElementById('smallclass').style.display="none";
document.getElementById('smallclasssetinfo').style.display="none";
document.getElementById('smallclasssettemp').style.display="none";
document.getElementById('bigclasssettemp').style.display="";
document.getElementById('bigclasssetclasstext').style.display="";
document.getElementById('smallcgtoinfo').style.display="none";
document.getElementById('smallclassbdinfo').style.display="none";
}
}
function mybclass()
{
bclass=new Array();
bclass[0]=new Array();
bclass[0][0]='';
<?
//-----------類別js數組
$psql=$empire->query("select classid,classpath from {$dbtbpre}enewsclass order by classid");
$i=0;
while($pr=$empire->fetch($psql))
{
?>
bclass[<?=$pr[classid]?>]=new Array();
bclass[<?=$pr[classid]?>][0]="<?=$pr[classpath]?>/";
<?
}
?>
}
mybclass();
function changeitem(myfrm)
{var SelectedBigId;
SelectedBigId=myfrm.bclassid.options[myfrm.bclassid.selectedIndex].value;
myfrm.pripath.value=bclass[SelectedBigId][0];
if(myfrm.enews.value=='EditClass')
{
if(!myfrm.ecmsclasstype.value==1)
{
myfrm.classpath.focus();
}
}
else
{
if(!myfrm.ecmsclasstype[1].checked)
{
myfrm.classpath.focus();
}
}
}
//檢查
function CheckForm(obj)
{
if(obj.classname.value=="")
{
alert("請輸入欄目名稱");
return false;
}
if(obj.enews.value=='EditClass')
{
if(obj.ecmsclasstype.value==1)
{
return true;
}
}
else
{
if(obj.ecmsclasstype[1].checked)
{
return true;
}
}
if(obj.classpath.value=="")
{
alert("請輸入欄目目錄");
return false;
}
//終極欄目
if(<?=$enews=='EditClass'?'obj.islast.value==1':'obj.islast.checked'?>)
{
if(obj.modid.value==0||obj.modid.value=="")
{
alert("請選擇所屬系統模型");
return false;
}
if(obj.listtempid.value==0)
{
alert("請到「模板選項」選擇列表模板");
return false;
}
if(obj.newstempid.value==0)
{
alert("請到「模板選項」選擇內容模板");
return false;
}
if(obj.filetype.value=="")
{
alert("請輸入信息文件擴展名");
return false;
}
}
//大欄目
else
{
if(obj.islist[1].checked&&obj.listtempid.value==0)//列表式
{
alert("請到「模板選項」選擇列表模板");
return false;
}
else if(obj.islist[0].checked&&obj.classtempid.value==0)
{
alert("到「模板選項」選擇封面模板");
return false;
}
else if(obj.islist[2].checked&&obj.classtext.value=='')
{
alert("請到「模板選項」設置頁面內容");
return false;
}
}
return true;
}
//修改綁定信息
function EditBdInfo(obj){
var infoid=obj.bdinfoid.value;
var r;
r=infoid.split(',');
if(infoid==''||r.length==1)
{
alert('請輸入綁定信息ID');
return false;
}
window.open('AddNews.php?<?=$ecms_hashur['ehref']?>&enews=EditNews&classid='+r[0]+'&id='+r[1]);
}
//修改綁定信息
function EditSmallBdInfo(obj){
var infoid=obj.smallbdinfoid.value;
var r;
r=infoid.split(',');
if(infoid==''||r.length==1)
{
alert('請輸入綁定信息ID');
return false;
}
window.open('AddNews.php?<?=$ecms_hashur['ehref']?>&enews=EditNews&classid='+r[0]+'&id='+r[1]);
}
</script>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="6" cellspacing="1">
<tr>
<td>位置:<?=$url?> </td>
</tr>
</table>
<form name="form1" method="post" action="ecmsclass.php" onsubmit="return CheckForm(document.form1);">
<?=$ecms_hashur['form']?>
<div class="tab-pane" id="TabPane1"> <script type="text/javascript">
tb1 = new WebFXTabPane( document.getElementById( "TabPane1" ) );
</script>
<div class="tab-page" id="baseinfo">
<h2 class="tab"> <font class=tabcolor>基本屬性</font> </h2>
<script type="text/javascript">tb1.addTabPage( document.getElementById( "baseinfo" ) );</script>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<input type=hidden name=enews value=<?=$enews?>>
<tr class="header">
<td height="30" colspan="2">增加欄目</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">欄目名稱</td>
<td> <input name="classname" type="text" id="classname" value="<?=$r[classname]?>" size="38">
<?
if($enews=="AddClass")
{
?>
<input type="button" name="Submit5" value="生成拼音目錄" onclick="window.open('GetPinyin.php?hz='+document.form1.classname.value+'&returnform=opener.document.form1.classpath.value<?=$ecms_hashur['href']?>','','width=160,height=100');">
<?
}
?>
<input name="oldbclassid" type="hidden" id="oldbclassid" value="<?=$r[bclassid]?>">
<input name="classid" type="hidden" id="classid" value="<?=$classid?>">
<input name="oldclassname" type="hidden" id="oldclassname" value="<?=$r[classname]?>">
<input name="oldislast" type="hidden" id="oldislast" value="<?=$r[islast]?>">
<input name="filepass" type="hidden" id="filepass" value="<?=$filepass?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">欄目別名</td>
<td><input name="bname" type="text" id="bname" value="<?=$r[bname]?>" size="38">
<font color="#666666">(為空則與欄目名相同)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" valign="top">所屬父欄目</td>
<td><select name="bclassid" size="12" id="bclassid" onchange='javascript:changeitem(document.form1);' style="width:320">
<option value="0"<?=$defaultbclassid?>>根欄目</option>
<?=$options?>
</select> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">欄目類型</td>
<td>
<?php
$wbclassstyle=' style="display:none"';
$nbclassstyle='';
if($enews=='EditClass')
{
if(empty($r[wburl]))
{
$wbclassstyle=' style="display:none"';
$nbclassstyle='';
echo"<b>內部欄目</b><input type=hidden name=ecmsclasstype value=0>";
}
else
{
$wbclassstyle='';
$nbclassstyle=' style="display:none"';
echo"<b>外部欄目</b><input type=hidden name=ecmsclasstype value=1>";
}
}
else
{
if(empty($r[wburl]))
{
$wbclassstyle=' style="display:none"';
$nbclassstyle='';
}
else
{
$wbclassstyle='';
$nbclassstyle=' style="display:none"';
}
?>
<input name="ecmsclasstype" type="radio" value="0"<?=empty($r[wburl])?' checked':''?> onclick="wbclass.style.display='none';nbclass.style.display='';">
內部欄目
<input type="radio" name="ecmsclasstype" value="1"<?=empty($r[wburl])?'':' checked'?> onclick="wbclass.style.display='';nbclass.style.display='none';">
外部欄目<font color="#666666">(選擇後不能修改)</font>
<?php
}
?> </td>
</tr>
<tbody id="wbclass"<?=$wbclassstyle?>>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td>外部欄目鏈接地址:
<input name="wburl" type="text" id="wburl" value="<?=$r[wburl]?>" size="38">
<input name="oldwburl" type="hidden" id="oldwburl" value="<?=$r[wburl]?>"></td>
</tr>
</tbody>
<tbody id="nbclass"<?=$nbclassstyle?>>
<tr bgcolor="#FFFFFF">
<td height="25">是否終級欄目</td>
<td>
<?=$islast?>
<font color="#FF0000">(終級欄目下才能增加信息)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" valign="top">欄目存放文件夾
<input name="oldclasspath" type="hidden" id="oldclasspath" value="<?=$r[classpath]?>">
<br> <input name="oldcpath" type="hidden" id="oldcpath" value="<?=$classpath?>"></td>
<td><table border="0" cellspacing="1" cellpadding="3">
<tr bgcolor="DBEAF5">
<td> </td>
<td bgcolor="DBEAF5">上層欄目目錄</td>
<td>本欄目目錄</td>
<td bgcolor="DBEAF5"> </td>
</tr>
<tr>
<td><div align="right">根目錄/</div></td>
<td><input name="pripath" type="text" id="pripath" value="<?=$pripath?>" size="30"> </td>
<td><input name="classpath" type="text" id="classpath3" value="<?=$classpath?>" size="16"<?=$read?>></td>
<td> <div align="left">
<input type="button" name="Submit3" value="檢測目錄" onclick="javascript:window.open('ecmscom.php?<?=$ecms_hashur['href']?>&enews=CheckPath&pripath='+document.form1.pripath.value+'&classpath='+document.form1.classpath.value,'','width=100,height=100,top=250,left=450');">
</div></td>
</tr>
</table></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">綁定的系統模型</td>
<td width="77%"><select name="modid" id="modid">
<?=$mod_options?>
</select> <input type="button" name="Submit6" value="管理系統模型" onclick="window.open('db/ListTable.php<?=$ecms_hashur['whehref']?>');">
*
<input name="oldmodid" type="hidden" id="oldmodid" value="<?=$r[modid]?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">使用優化方案</td>
<td><select name="yhid" id="yhid">
<option name="0">不使用</option>
<?=$yh_options?>
</select>
<input type="button" name="Submit63" value="管理優化方案" onclick="window.open('db/ListYh.php<?=$ecms_hashur['whehref']?>');"> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">綁定域名</td>
<td><input name="classurl" type="text" id="classurl" value="<?=$r[classurl]?>" size="38">
<input name="UrlToSmall" type="checkbox" id="UrlToSmall" value="1">
應用於子欄目<font color="#666666"> (沒有綁定,請留空.後面無需加"/")</font></td>
</tr>
</tbody>
<tr bgcolor="#FFFFFF">
<td height="25">欄目縮略圖</td>
<td><input name="classimg" type="text" id="classimg" value="<?=$r[classimg]?>" size="38">
<a onclick="window.open('ecmseditor/FileMain.php?modtype=1&type=1&classid=&doing=2&field=classimg&filepass=<?=$filepass?>&sinfo=1<?=$ecms_hashur['ehref']?>','','width=700,height=550,scrollbars=yes');" title="選擇已上傳的圖片"><img src="../data/images/changeimg.gif" width="22" height="22" border="0" align="absbottom"></a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" valign="top">頁面關鍵字</td>
<td><input name="classpagekey" type="text" id="classpagekey" value="<?=$r[classpagekey]?>" size="38"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" valign="top">欄目簡介</td>
<td><textarea name="intro" cols="70" rows="8" id="intro"><?=stripSlashes($r[intro])?></textarea></td>
</tr>
<?php
if($enews=='EditClass')
{
?>
<tr bgcolor="#FFFFFF">
<td height="25">欄目增加時間</td>
<td><?=$r['addtime']?date("Y-m-d",$r['addtime']):'---'?></td>
</tr>
<?php
}
?>
</table>
</div>
<div class="tab-page" id="changevar">
<h2 class="tab"> <font class="tabcolor">選項設置</font> </h2>
<script type="text/javascript">tb1.addTabPage( document.getElementById( "changevar" ) );</script>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="30" colspan="2">欄目選項</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">是否顯示到導航</td>
<td><input type="radio" name="showclass" value="0"<?=$r[showclass]==0?' checked':''?>>
顯示
<input type="radio" name="showclass" value="1"<?=$r[showclass]==1?' checked':''?>>
不顯示<font color="#666666">(如:導航標籤,地圖標籤)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">顯示排序</td>
<td><input name="myorder" type="text" id="myorder" value="<?=$r[myorder]?>">
<font color="#666666">(值越小越前面)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">欄目訪問權限</td>
<td>
<?=$cgroup?> </td>
</tr>
<tr bgcolor="#FFFFFF" id="smallcgtoinfo">
<td height="25" valign="top"> </td>
<td><input name="cgtoinfo" type="checkbox" id="cgtoinfo" value="1"<?=$r[cgtoinfo]?' checked':''?>>
訪問權限應用於信息<font color="#666666">(選擇後信息的查看權限可以不設置)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">開啟前台投稿</td>
<td><input type="radio" name="openadd" value="0"<?=$openadd0?>>
開啟
<input type="radio" name="openadd" value="1"<?=$openadd1?>>
關閉
<input name="oldopenadd" type="hidden" id="oldopenadd" value="<?=$r[openadd]?>"> </td>
</tr>
<tbody id="smallclass">
<tr>
<td>前台投稿設置</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td>驗證碼</td>
<td height="25"> 開啟驗證碼:
<input name="qaddshowkey" type="checkbox" id="qaddshowkey2" value="1"<?=$r['qaddshowkey']==1?' checked':''?>> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td>投稿權限<font color="#666666">(不選為不限)</font></td>
<td height="25">
<?=$qgroup?> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td>投稿生成列表</td>
<td height="25"><p>
<select name="qaddlist" id="qaddlist">
<option value="0"<?=$r['qaddlist']==0?' selected':''?>>不生成</option>
<option value="1"<?=$r['qaddlist']==1?' selected':''?>>生成當前欄目</option>
<option value="2"<?=$r['qaddlist']==2?' selected':''?>>生成首頁</option>
<option value="3"<?=$r['qaddlist']==3?' selected':''?>>生成父欄目</option>
<option value="4"<?=$r['qaddlist']==4?' selected':''?>>生成當前欄目與父欄目</option>
<option value="5"<?=$r['qaddlist']==5?' selected':''?>>生成父欄目與首頁</option>
<option value="6"<?=$r['qaddlist']==6?' selected':''?>>生成當前欄目、父欄目與首頁</option>
</select>
</p></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>投稿審核</td>
<td height="25"> <input type="radio" name="checkqadd" value="0"<?=$r['checkqadd']==0?' checked':''?>>
需要審核
<input type="radio" name="checkqadd" value="1"<?=$r['checkqadd']==1?' checked':''?>>
無需審核</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>發佈信息增加</td>
<td height="25"> <input name="addinfofen" type="text" id="addinfofen2" value="<?=$r[addinfofen]?>" size="6">
點數 <font color="#666666">(不增加請設為0,扣點請設為負數,使用此項需將投稿權限設置為會員以上)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>管理投稿</td>
<td height="25"><strong>
<select name="adminqinfo" id="adminqinfo">
<option value="0"<?=$r['adminqinfo']==0?' selected':''?>>不能管理信息</option>
<option value="1"<?=$r['adminqinfo']==1?' selected':''?>>可管理未審核信息</option>
<option value="2"<?=$r['adminqinfo']==2?' selected':''?>>只可編輯未審核信息</option>
<option value="3"<?=$r['adminqinfo']==3?' selected':''?>>只可刪除未審核信息</option>
<option value="4"<?=$r['adminqinfo']==4?' selected':''?>>可管理所有信息</option>
<option value="5"<?=$r['adminqinfo']==5?' selected':''?>>只可編輯所有信息</option>
<option value="6"<?=$r['adminqinfo']==6?' selected':''?>>只可刪除所有信息</option>
</select>
<input name="qeditchecked" type="checkbox" id="qeditchecked" value="1"<?=$r['qeditchecked']==1?' checked':''?>>
</strong>編輯信息需要審核</td>
</tr>
<tr>
<td valign="top">後台信息發佈設置</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td>增加/編輯信息</td>
<td height="25"> <input name="addreinfo" type="checkbox" id="addreinfo" value="1"<?=$r['addreinfo']==1?' checked':''?>>
生成內容頁;生成列表:
<select name="haddlist" id="haddlist">
<option value="0"<?=$r['haddlist']==0?' selected':''?>>不生成</option>
<option value="1"<?=$r['haddlist']==1?' selected':''?>>生成當前欄目</option>
<option value="2"<?=$r['haddlist']==2?' selected':''?>>生成首頁</option>
<option value="3"<?=$r['haddlist']==3?' selected':''?>>生成父欄目</option>
<option value="4"<?=$r['haddlist']==4?' selected':''?>>生成當前欄目與父欄目</option>
<option value="5"<?=$r['haddlist']==5?' selected':''?>>生成父欄目與首頁</option>
<option value="6"<?=$r['haddlist']==6?' selected':''?>>生成當前欄目、父欄目與首頁</option>
</select></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> </td>
<td height="25"><input name="repreinfo" type="checkbox" id="repreinfo2" value="1"<?=$r[repreinfo]==1?' checked':''?>>
生成上一篇信息</td>
</tr>
<tr bgcolor="#FFFFFF">
<td> </td>
<td height="25"><input name="sametitle" type="checkbox" id="sametitle" value="1"<?=$r['sametitle']==1?' checked':''?>>
檢測標題重複</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>審核設置</td>
<td height="25"><input name="checked" type="checkbox" id="checked" value="1"<?=$checked?>>
直接審核</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>使用工作流</td>
<td height="25"><select name="wfid" id="wfid">
<option value="0">不使用工作流</option>
<?=$workflows?>
</select></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">信息預設投票</td>
<td><select name="definfovoteid" id="definfovoteid">
<option value="0">不設置</option>
<?=$definfovote?>
</select> <input type="button" name="Submit622" value="管理預設投票" onclick="window.open('other/ListVoteMod.php<?=$ecms_hashur['whehref']?>');">
<font color="#666666">(增加信息時默認的投票項)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">默認查看信息權限</td>
<td><select name="groupid" id="groupid">
<option value="0">遊客</option>
<?=$group?>
</select> <font color="#666666">(增加信息時默認的會員組權限)</font></td>
</tr>
<tr>
<td valign="top">其他設置</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" valign="top">評論功能</td>
<td height="25"><input type="radio" name="openpl" value="0"<?=$openpl0?>>
開啟
<input type="radio" name="openpl" value="1"<?=$openpl1?>>
關閉,評論需要審核:
<input name="checkpl" type="checkbox" id="checkpl2" value="1"<?=$checkpl?>>
是</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">信息歸檔</td>
<td>歸檔大於
<input name="doctime" type="text" id="doctime" value="<?=$r[doctime]?>" size="6">
天的信息<font color="#666666">(0為不歸檔)</font></td>
</tr>
<tr>
<td>特殊模型設置</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">下載/影視模型</td>
<td height="25">每行顯示
<input name="down_num" type="text" id="link_num3" value="<?=$r[down_num]?>" size="5">
個下載地址,
<input name="online_num" type="text" id="down_num" value="<?=$r[online_num]?>" size="5">
個在線觀看地址</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-page" id="settemplate">
<h2 class="tab"> <font class="tabcolor">模板選項</font> </h2>
<script type="text/javascript">tb1.addTabPage( document.getElementById( "settemplate" ) );</script>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="30" colspan="2">模板設置</td>
</tr>
<tbody id="smallclassbdinfo">
<tr bgcolor="#FFFFFF">
<td height="25">欄目綁定信息</td>
<td height="25">綁定信息ID:
<input name="smallbdinfoid" type="text" id="smallbdinfoid" value="<?=$r[bdinfoid]?>">
<a href="#empirecms" onclick="EditSmallBdInfo(document.form1);">[修改信息]</a> <font color="#666666">(格式:欄目ID,信息ID)</font></td>
</tr>
</tbody>
<tbody id="bigclasssettemp">
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">頁面顯示模式</td>
<td height="25"> <input type="radio" name="islist" value="0"<?=$r[islist]==0?' checked':''?>>
封面式
<input type="radio" name="islist" value="1"<?=$r[islist]==1?' checked':''?>>
列表式
<input type="radio" name="islist" value="2"<?=$r[islist]==2?' checked':''?>>
頁面內容式
<input type="radio" name="islist" value="3"<?=$r[islist]==3?' checked':''?> onclick="bdinfo.style.display='';">
欄目綁定信息
<input name="oldislist" type="hidden" id="oldislist" value="<?=$r[islist]?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td height="25"><font color="#666666">說明:封面式要選擇封面模板、列表式要選擇列表模板、內容式要錄入頁面內容</font></td>
</tr>
<?php
$bdinfostyle=$r[islist]==3?'':' style="display:none"';
?>
<tr id="bdinfo" bgcolor="#FFFFFF"<?=$bdinfostyle?>>
<td height="25"> </td>
<td height="25">綁定信息ID:
<input name="bdinfoid" type="text" id="bdinfoid" value="<?=$r[bdinfoid]?>">
<a href="#empirecms" onclick="EditBdInfo(document.form1);">[修改信息]</a>
<font color="#666666">(格式:欄目ID,信息ID)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">封面模板</td>
<td height="25"><select name="classtempid">
<?=$classtemp?>
</select> <input type="button" name="Submit6223" value="管理封面模板" onclick="window.open('template/ListClasstemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
</tr>
</tbody>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">所屬列表模板</td>
<td> 靜態:
<select name="listtempid" id="listtempid">
<?=$listtemp_options?>
</select>
,動態:
<select name="dtlisttempid">
<?=$dtlisttemp_options?>
</select> <input type="button" name="Submit6222" value="管理列表模板" onclick="window.open('template/ListListtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');">
*</td>
</tr>
<tbody id="smallclasssettemp">
<tr bgcolor="#FFFFFF">
<td height="25">所屬內容模板</td>
<td><select name="newstempid" id="newstempid">
<?=$newstemp_options?>
</select> <input type="button" name="Submit62222" value="管理內容模板" onclick="window.open('template/ListNewstemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');">
*(
<input name="tobetempinfo" type="checkbox" id="tobetempinfo" value="1">
應用於已生成的信息 )</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">所屬評論模板</td>
<td><select name="pltempid" id="pltempid">
<option value="0">使用默認模板 </option>
<?=$pltemp?>
</select> <input type="button" name="Submit62" value="管理評論模板" onclick="window.open('template/ListPltemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
</tr>
</tbody>
<tr bgcolor="#FFFFFF">
<td height="25">搜索模板</td>
<td><select name="searchtempid" id="searchtempid">
<option value="0">使用默認模板 </option>
<?=$searchtemp?>
</select> <input type="button" name="Submit62" value="管理搜索模板" onclick="window.open('template/ListSearchtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">WAP模板</td>
<td><select name="wapstyleid" id="wapstyleid">
<option value="0">使用默認模板</option>
<?=$wapstyles?>
</select> <input type="button" name="Submit623" value="管理WAP模板" onclick="window.open('other/WapStyle.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');">
(
<input name="wapstylesclass" type="checkbox" id="wapstylesclass" value="1">
應用於子欄目) </td>
</tr>
<tbody id="bigclasssetclasstext">
<tr bgcolor="#FFFFFF">
<td height="25">頁面內容<font color="#666666">(支持標籤同封面模板)</font></td>
<td>請將內容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.classtext.value);document.form1.classtext.select()" title="點擊複製模板內容"><strong>複製到Dreamweaver(推薦)</strong></a>或者使用<a href="#ecms" onclick="window.open('template/editor.php?getvar=opener.document.form1.classtext.value&returnvar=opener.document.form1.classtext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','editclasstext','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在線編輯</strong></a>進行可視化編輯</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="2"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" colspan="2"><textarea name="classtext" cols="80" rows="23" id="classtext" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($addr[classtext]))?></textarea> </td>
</tr>
</table></td>
</tr>
</tbody>
</table>
</div>
<div class="tab-page" id="sethtml">
<h2 class="tab"> <font class="tabcolor">生成選項</font> </h2>
<script type="text/javascript">tb1.addTabPage( document.getElementById( "sethtml" ) );</script>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="30" colspan="2">生成設置</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">欄目頁模式</td>
<td><input type="radio" name="listdt" value="0"<?=$r[listdt]==0?' checked':''?>>
靜態頁面
<input type="radio" name="listdt" value="1"<?=$r[listdt]==1?' checked':''?>>
動態頁面
<input name="oldlistdt" type="hidden" id="oldlistdt" value="<?=$r[listdt]?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">內容頁模式</td>
<td><input type="radio" name="showdt" value="0"<?=$r[showdt]==0?' checked':''?>>
靜態頁面
<input type="radio" name="showdt" value="1"<?=$r[showdt]==1?' checked':''?>>
動態生成<font color="#666666">
<input type="radio" name="showdt" value="2"<?=$r[showdt]==2?' checked':''?>>
</font>動態頁面</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">管理信息排序方式</td>
<td> <input name="listorder" type="text" id="listorder" value="<?=$r[listorder]?>" size="38">
<select name="lorderselect" onchange="document.form1.listorder.value=this.value">
<option value="id DESC"></option>
<option value="newstime DESC">按發佈時間降序排序</option>
<option value="id DESC">按ID降序排序</option>
<option value="onclick DESC">按點擊率降序排序</option>
<option value="totaldown DESC">按下載數降序排序</option>
<option value="plnum DESC">按評論數降序排序</option>
</select> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">列表式頁面排序方式</td>
<td> <input name="reorder" type="text" id="reorder" value="<?=$r[reorder]?>" size="38">
<select name="orderselect" onchange="document.form1.reorder.value=this.value">
<option value="newstime DESC"></option>
<option value="newstime DESC">按發佈時間降序排序</option>
<option value="id DESC">按ID降序排序</option>
<option value="onclick DESC">按點擊率降序排序</option>
<option value="totaldown DESC">按下載數降序排序</option>
<option value="plnum DESC">按評論數降序排序</option>
</select> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">是否生成</td>
<td><input name="nreclass" type="checkbox" value="1"<?=$r[nreclass]==1?' checked':''?>>
不生成欄目頁,
<input name="nreinfo" type="checkbox" value="1"<?=$r[nreinfo]==1?' checked':''?>>
不生成內容頁,
<input name="nrejs" type="checkbox" value="1"<?=$r[nrejs]==1?' checked':''?>>
不生成JS調用,
<input name="nottobq" type="checkbox" value="1"<?=$r[nottobq]==1?' checked':''?>>
標籤不調用</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">欄目文件擴展名</td>
<td><input name="classtype" type="text" id="classtype" value="<?=$r[classtype]?>" size="38">
<select name="select" onchange="document.form1.classtype.value=this.value">
<option value=".html">擴展名</option>
<option value=".html">.html</option>
<option value=".htm">.htm</option>
<option value=".php">.php</option>
<option value=".shtml">.shtml</option>
</select> <input name="oldclasstype" type="hidden" id="oldclasstype" value="<?=$r[classtype]?>">
<font color="#666666">(如.html,.xml,.htm等)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">顯示總記錄數</td>
<td> <input name="maxnum" type="text" id="maxnum" value="<?=$r[maxnum]?>" size="38">
條<font color="#666666">(0為顯示所有記錄)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">生成靜態頁數</td>
<td><input name="repagenum" type="text" id="repagenum" value="<?=$r[repagenum]?>" size="38">
頁<font color="#666666">(超過分頁採用動態鏈接,0為不限)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">生成信息每頁顯示</td>
<td><input name="lencord" type="text" id="lencord" value="<?=$r[lencord]?>" size="38">
條記錄
<input name="oldlencord" type="hidden" id="oldlencord3" value="<?=$r[lencord]?>"></td>
</tr>
<tbody id="smallclasssetinfo">
<tr bgcolor="#FFFFFF">
<td height="25">相關鏈接顯示</td>
<td><input name="link_num" type="text" id="link_num" value="<?=$r[link_num]?>" size="38">
條記錄<font color="#666666">(0為不生成相關鏈接)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="26">內容頁存放目錄</td>
<td><input type="radio" name="infopath" value="0"<?=$r[ipath]==''?' checked':''?>>
欄目目錄
<input type="radio" name="infopath" value="1"<?=$r[ipath]<>''?' checked':''?>>
自定義: /
<input name="ipath" type="text" id="ipath" value="<?=$r[ipath]?>">
<font color="#666666">(從根目錄開始)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="26">內容頁目錄存放形式</td>
<td><input name="newspath" type="text" id="newspath" value="<?=$r[newspath]?>" size="38">
<select name="select2" onchange="document.form1.newspath.value=this.value">
<option value="Y-m-d">選擇</option>
<option value="Y-m-d">2005-01-27</option>
<option value="Y/m-d">2005/01-27</option>
<option value="Y/m/d">2005/01/27</option>
<option value="Ymd">20050127</option>
<option value="">不設置目錄</option>
</select> <font color="#666666">(如Y-m-d,Y/m-d等形式)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">內容頁文件命名形式</td>
<td>[前綴]
<input name="filename_qz" type="text" id="filename_qz" value="<?=$r[filename_qz]?>" size="15">
命名:
<input type="radio" name="filename" value="0"<?=$r[filename]==0?' checked':''?>>
<a title="信息ID:1.html">信息ID</a>
<input type="radio" name="filename" value="1"<?=$r[filename]==1?' checked':''?>>
<a title="unix時間戳+信息ID:12102462981.html">time()</a>
<input type="radio" name="filename" value="4"<?=$r[filename]==4?' checked':''?>>
<a title="日期+信息ID:201210011.html">date()</a>
<input type="radio" name="filename" value="5"<?=$r[filename]==5?' checked':''?>>
<a title="各表信息在同一個目錄不會重複:1000010000000001.html">公共信息ID</a>
<input type="radio" name="filename" value="2"<?=$r[filename]==2?' checked':''?>>
<a title="MD5加密地址:c4ca4238a0b923820dcc509a6f75849b.html">md5()</a>
<input type="radio" name="filename" value="3"<?=$r[filename]==3?' checked':''?>>
<a title="信息ID目錄:/1/">目錄</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">內容頁文件擴展名</td>
<td><input name="filetype" type="text" id="filetype" value="<?=$r[filetype]?>" size="38">
<select name="select3" onchange="document.form1.filetype.value=this.value">
<option value=".html">擴展名</option>
<option value=".html">.html</option>
<option value=".htm">.htm</option>
<option value=".php">.php</option>
<option value=".shtml">.shtml</option>
</select> <font color="#666666">(如.html,.xml,.htm等)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">內容關鍵字替換</td>
<td><select name="keycid" id="keycid">
<option value="0"<?=$r['keycid']==0?' selected':''?>>替換所有</option>
<option value="-1"<?=$r['keycid']==-1?' selected':''?>>不替換</option>
<?php
$keycsql=$empire->query("select classid,classname from {$dbtbpre}enewskeyclass");
while($keycr=$empire->fetch($keycsql))
{
?>
<option value="<?=$keycr['classid']?>"<?=$r['keycid']==$keycr['classid']?' selected':''?>><?=$keycr['classname']?></option>
<?php
}
?>
</select>
<input type="button" name="Submit6232" value="管理內容關鍵字" onclick="window.open('NewsSys/key.php<?=$ecms_hashur['whehref']?>');"></td>
</tr>
</tbody>
</table>
</div>
<div class="tab-page" id="setjs">
<h2 class="tab"> <font class="tabcolor">JS調用設置</font> </h2>
<script type="text/javascript">tb1.addTabPage( document.getElementById( "setjs" ) );</script>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="30" colspan="2">JS調用相關設置</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">所用JS模板</td>
<td><select name="jstempid" id="jstempid">
<?=$jstemp?>
</select>
<input type="button" name="Submit62223" value="管理JS模板" onclick="window.open('template/ListJstemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">最新信息JS顯示</td>
<td>
<input name="newline" type="text" id="newline" value="<?=$r[newline]?>" size="38">
條記錄</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">熱門信息JS顯示</td>
<td>
<input name="hotline" type="text" id="hotline" value="<?=$r[hotline]?>" size="38">
條記錄</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">推薦信息JS顯示</td>
<td>
<input name="goodline" type="text" id="goodline" value="<?=$r[goodline]?>" size="38">
條記錄</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">熱門評論信息JS顯示</td>
<td>
<input name="hotplline" type="text" id="hotplline" value="<?=$r[hotplline]?>" size="38">
條記錄</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">頭條信息JS顯示</td>
<td>
<input name="firstline" type="text" id="firstline" value="<?=$r[firstline]?>" size="38">
條記錄</td>
</tr>
</table>
</div>
<?php
$classfnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsclassf");
if($classfnum)
{
$editorfnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsclassf where fform='editor' limit 1");
if($editorfnum)
{
include('ecmseditor/infoeditor/fckeditor.php');
}
?>
<div class="tab-page" id="setaddfield">
<h2 class="tab"> <font class="tabcolor">自定義字段設置</font> </h2>
<script type="text/javascript">tb1.addTabPage( document.getElementById( "setaddfield" ) );</script>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="23%" height="30">自定義字段設置</td>
<td height="30"> </td>
</tr>
<?php
@include('../data/html/classaddform.php');
?>
<tr bgcolor="#FFFFFF">
<td height="30" colspan="2"><strong>欄目自定義字段調用說明</strong><br>
內置調用欄目自定義字段函數:ReturnClassAddField(欄目ID,字段名),欄目ID=0為當前欄目ID。取多個字段內容可用逗號隔開,例子:<br>
取得'classtext'字段內容:$value=ReturnClassAddField(0,'classtext'); //$value就是字段內容。<br>
取得多個字段內容:$value=ReturnClassAddField(1,'classid,classtext'); //$value['classtext']才是字段內容。</td>
</tr>
</table>
</div>
<?php
}
?>
</div>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td width="100%" height="30"><div align="center"><strong>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
<input type=hidden name=from value="<?=ehtmlspecialchars($_GET['from'])?>"></strong></div></td>
</tr>
</table>
</form>
</body>
</html>
<?php
db_close();
$empire=null;
?>
<?=$hiddenclass?>