EditPublicTemp.php
45.4 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
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=1;
//驗證用戶
$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,"template");
$gid=(int)$_GET['gid'];
$gname=CheckTempGroup($gid);
$tname=ehtmlspecialchars($_GET['tname']);
$r=$empire->fetch1("select * from ".GetDoTemptb('enewspubtemp',$gid)." limit 1");
db_close();
$empire=null;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>公共模板</title>
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
<SCRIPT lanuage="JScript">
<!--
function tempturnit(ss)
{
if (ss.style.display=="")
ss.style.display="none";
else
ss.style.display="";
}
-->
</SCRIPT>
<script>
function ReTempBak(){
self.location.reload();
}
</script>
</head>
<body>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td width="83%"><p>位置:
<?=$gname?>
> <a href="EditPublicTemp.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>">公共模板管理</a></p></td>
<td width="17%"> <div align="right" class="emenubutton">
<input type="button" name="Submit5" value="進入數據更新" onclick="window.open('../ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?>');">
</div></td>
</tr>
</table>
<?
if($tname=="indextemp"||empty($tname))
{
?>
<br>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=indextemp>
<form name="formindex" method="post" action="../ecmstemp.php">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25" colspan="2"><div align="center">修改首頁模板(<a href="../../../" target="_blank">預覽</a>)</div></td>
</tr>
<tr>
<td height="25" colspan="2" bgcolor="#FFFFFF"><div align="center">請將模板內容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.formindex.temptext.value);document.formindex.temptext.select()" title="點擊複製模板內容"><strong>複製到Dreamweaver(推薦)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.formindex.temptext.value&returnvar=opener.document.formindex.temptext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在線編輯</strong></a>進行可視化編輯</div></td>
</tr>
<tr>
<td height="25" colspan="2" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[indextemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit" value="修改">
<input name="enews" type="hidden" id="enews" value="EditPublicTemp">
<input name="templatename" type="hidden" id="templatename" value="indextemp">
<input type="reset" name="Submit2" value="重置">
<input name="gid" type="hidden" id="gid" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubindextemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
<td bgcolor="#FFFFFF"><div align="right" class="emenubutton">
<input type="button" name="Submit3" value="管理首頁方案" onclick="window.open('ListIndexpage.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>');">
</div></td>
</tr>
</form>
<tr>
<td height="25" colspan="2" bgcolor="#FFFFFF"> [<a href="#ecms" onclick="tempturnit(indexshowtempvar);">顯示模板變量說明</a>]
[<a href="#ecms" onclick="window.open('EnewsBq.php<?=$ecms_hashur['whehref']?>','','width=600,height=500,scrollbars=yes,resizable=yes');">查看模板標籤語法</a>]
[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS調用地址</a>]
[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板變量</a>]
[<a href="#ecms" onclick="window.open('ListBqtemp.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看標籤模板</a>]</td>
</tr>
<tr id="indexshowtempvar" style="display:none">
<td height="25" colspan="2" bgcolor="#FFFFFF"><strong>首頁模板支持的變量說明</strong>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr bgcolor="#FFFFFF">
<td width="50%" height="25"> <input name="textfield" type="text" value="[!--pagetitle--]">
:網站名稱</td>
<td width="50%"> <input name="textfield2" type="text" value="[!--news.url--]">
:網站地址</td>
<td width="50%"><input name="textfield923" type="text" value="[!--class.menu--]">
:一級欄目導航</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield72" type="text" value="[!--pagekey--]">
:頁面關鍵字</td>
<td><input name="textfield73" type="text" value="[!--pagedes--]">
:頁面描述</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><strong>支持公共模板變量</strong></td>
<td><strong>支持所有模板標籤</strong></td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
<br>
<?
}
if($tname=="cptemp"||empty($tname))
{
?>
<br>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=cptemp>
<form name="formcp" method="post" action="../ecmstemp.php">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">控制面板模板 (<a href="../../member/cp" target="_blank">預覽</a>)</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><div align="center">請將模板內容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.formcp.temptext.value);document.formcp.temptext.select()" title="點擊複製模板內容"><strong>複製到Dreamweaver(推薦)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.formcp.temptext.value&returnvar=opener.document.formcp.temptext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在線編輯</strong></a>進行可視化編輯</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[cptemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditCptemp">
<input name="templatename" type="hidden" id="templatename" value="cptemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubcptemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
</form>
<tr>
<td height="25" bgcolor="#FFFFFF"> [<a href="#ecms" onclick="tempturnit(cpshowtempvar);">顯示模板變量說明</a>]
[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS調用地址</a>]
[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板變量</a>]</td>
</tr>
<tr id="cpshowtempvar" style="display:none">
<td height="25" bgcolor="#FFFFFF"><table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr bgcolor="#FFFFFF">
<td width="33%" height="25"><input name="textfield30" type="text" value="[!--newsnav--]">
:所在位置導航條</td>
<td width="34%"><input name="textfield31" type="text" value="[!--news.url--]">
:網站地址</td>
<td width="33%"><input name="textfield3" type="text" value="[!--pagetitle--]">
:頁面標題</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield722" type="text" value="[!--pagekey--]">
:頁面關鍵字</td>
<td><input name="textfield732" type="text" value="[!--pagedes--]">
:頁面描述</td>
<td><input name="textfield922" type="text" value="[!--class.menu--]">
:一級欄目導航</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><strong>支持公共模板變量</strong></td>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">說明: 在要顯示內容的地方(如註冊,登陸等)加上「[!--empirenews.template--]」</td>
</tr>
</table>
<br>
<?
}
if($tname=="schalltemp"||empty($tname))
{
?>
<br>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=schalltemp>
<form name="formschall" method="post" action="../ecmstemp.php">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">全站搜索模板(<a href="../../sch/sch.html" target="_blank">測試模板</a>)</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><div align="center">請將模板內容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.formschall.temptext.value);document.formschall.temptext.select()" title="點擊複製模板內容"><strong>複製到Dreamweaver(推薦)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.formschall.temptext.value&returnvar=opener.document.formschall.temptext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在線編輯</strong></a>進行可視化編輯</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[schalltemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><div align="center">簡介截取字數:
<input name="schallsubnum" type="text" id="schallsubnum" value="<?=$r[schallsubnum]?>">
,時間格式:
<input name="schalldate" type="text" id="schalldate" value="<?=$r[schalldate]?>">
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditSchallTemp">
<input name="tempname" type="hidden" id="tempname" value="schalltemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubschalltemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
</form>
<tr>
<td height="25" bgcolor="#FFFFFF"> [<a href="#ecms" onclick="tempturnit(schallshowtempvar);">顯示模板變量說明</a>]
[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS調用地址</a>]
[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板變量</a>]</td>
</tr>
<tr id="schallshowtempvar" style="display:none">
<td height="25" bgcolor="#FFFFFF"><table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr bgcolor="#FFFFFF">
<td width="33%" height="25"><input name="textfield3023" type="text" value="[!--news.url--]">
:網站地址</td>
<td width="34%"><input name="textfield3123" type="text" value="[!--newsnav--]">
:導航條</td>
<td width="33%"><input name="textfield31222" type="text" value="[!--keyboard--]">
:搜索關鍵字</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield302232" type="text" value="[!--num--]">
:總記錄數</td>
<td><input name="textfield57" type="text" value="[!--listpage--]">
:分頁導航</td>
<td><input name="textfield58" type="text" value="[!--no.num--]">
:編號</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield55" type="text" value="[!--titleurl--]">
:信息鏈接</td>
<td><input name="textfield56" type="text" value="[!--id--]">
:信息ID</td>
<td><input name="textfield59" type="text" value="[!--classid--]">
:欄目ID</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield60" type="text" value="[!--titlepic--]">
:標題圖片</td>
<td><input name="textfield61" type="text" value="[!--newstime--]">
:發佈時間</td>
<td><input name="textfield62" type="text" value="[!--title--]">
:信息標題</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield63" type="text" value="[!--smalltext--]">
:簡介</td>
<td><input name="textfield92" type="text" value="[!--class.menu--]">
:一級欄目導航</td>
<td><strong>支持公共模板變量</strong></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p>模板格式:列表頭[!--empirenews.listtemp--]列表內容[!--empirenews.listtemp--]列表尾<br>
</p></td>
</tr>
</table>
<br>
<?
}
if($tname=="searchformtemp"||empty($tname))
{
?>
<br>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=searchtemp>
<form name="formsearchform" method="post" action="../ecmstemp.php">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">高級搜索表單模板 (<a href="../../../search/" target="_blank">預覽</a>)</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><div align="center">請將模板內容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.formsearchform.temptext.value);document.formsearchform.temptext.select()" title="點擊複製模板內容"><strong>複製到Dreamweaver(推薦)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.formsearchform.temptext.value&returnvar=opener.document.formsearchform.temptext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在線編輯</strong></a>進行可視化編輯</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[searchtemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditSearchTemp">
<input name="tempname" type="hidden" id="tempname" value="searchtemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubsearchtemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
</form>
<tr>
<td height="25" bgcolor="#FFFFFF"> [<a href="#ecms" onclick="tempturnit(searchformshowtempvar);">顯示模板變量說明</a>]
[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS調用地址</a>]
[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板變量</a>]</td>
</tr>
<tr id="searchformshowtempvar" style="display:none">
<td height="25" bgcolor="#FFFFFF"><table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr bgcolor="#FFFFFF">
<td width="33%" height="25"><input name="textfield302" type="text" value="[!--class--]">
:搜索欄目列表</td>
<td width="34%"><input name="textfield312" type="text" value="[!--news.url--]">
:網站地址</td>
<td width="33%"><input name="textfield31232" type="text" value="[!--newsnav--]">
:導航條</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield723" type="text" value="[!--pagekey--]">
:頁面關鍵字</td>
<td><input name="textfield733" type="text" value="[!--pagedes--]">
:頁面描述</td>
<td><input name="textfield924" type="text" value="[!--class.menu--]">
:一級欄目導航</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><strong>支持公共模板變量</strong></td>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
<br>
<?
}
if($tname=="searchformjs"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=searchjstemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">搜索JS模板[橫向]</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="18" id="temptext" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[searchjstemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditSearchTemp">
<input name="tempname" type="hidden" id="tempname" value="searchjstemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubsearchjstemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板變量說明:</strong> <br>
站點地址: [!--news.url--],搜索欄目列表: [!--class--] <br>
<br>
<strong>調用地址:</strong>
<input name="textfield1322" type="text" id="textfield1322" size="60" value="<script src="<?=$public_r[newsurl]."d/js/js/search_news1.js";?>"></script>">
[<a href="../view/js.php?classid=1&js=<?=$public_r[newsurl]."d/js/js/search_news1.js";?><?=$ecms_hashur['ehref']?>" target="_blank">預覽</a>]
</p></td>
</tr>
</table>
</form>
<?
}
if($tname=="searchformjs1"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=searchjstemp1>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">搜索JS模板[縱向]</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="18" id="temptext" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[searchjstemp1]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditSearchTemp">
<input name="tempname" type="hidden" id="tempname" value="searchjstemp1">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubsearchjstemp1&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板變量說明:</strong> <br>
站點地址: [!--news.url--],搜索欄目列表: [!--class--] <br>
<br>
<strong>調用地址:</strong>
<input name="textfield13222" type="text" id="textfield13222" size="60" value="<script src="<?=$public_r[newsurl]."d/js/js/search_news2.js";?>"></script>">
[<a href="../view/js.php?classid=1&js=<?=$public_r[newsurl]."d/js/js/search_news2.js";?><?=$ecms_hashur['ehref']?>" target="_blank">預覽</a>]
</p>
</td>
</tr>
</table>
</form>
<?
}
if($tname=="otherlinktemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=otherlinktemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">相關信息鏈接模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="18" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[otherlinktemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><div align="center">標題截取字數:
<input name="otherlinktempsub" type="text" id="otherlinktempsub" value="<?=$r[otherlinktempsub]?>">
,時間格式:
<input name="otherlinktempdate" type="text" id="otherlinktempdate" value="<?=$r[otherlinktempdate]?>">
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditOtherLinkTemp">
<input name="tempname" type="hidden" id="tempname" value="otherlinktemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubotherlinktemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板格式:</strong>列表頭[!--empirenews.listtemp--]列表內容[!--empirenews.listtemp--]列表尾<br>
<strong>模板變量說明:</strong><br>
標題: [!--title--],標題alt:[!--oldtitle--], 標題鏈接: [!--titleurl--] <br>
發佈時間: [!--newstime--], 標題圖片: [!--titlepic--]</p></td>
</tr>
</table>
</form>
<?
}
if($tname=="gbooktemp"||empty($tname))
{
?>
<br>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=gbooktemp>
<form name="formgbook" method="post" action="../ecmstemp.php">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">留言板模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><div align="center">請將模板內容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.formgbook.temptext.value);document.formgbook.temptext.select()" title="點擊複製模板內容"><strong>複製到Dreamweaver(推薦)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.formgbook.temptext.value&returnvar=opener.document.formgbook.temptext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在線編輯</strong></a>進行可視化編輯</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r['gbooktemp']))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit" value="修改">
<input name="enews" type="hidden" id="enews" value="EditGbooktemp">
<input name="templatename" type="hidden" id="templatename" value="gbooktemp">
<input type="reset" name="Submit2" value="重置">
<input name="gid" type="hidden" id="gid" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubgbooktemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
</form>
<tr>
<td height="25" bgcolor="#FFFFFF"> [<a href="#ecms" onclick="tempturnit(gbookshowtempvar);">顯示模板變量說明</a>]
[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS調用地址</a>]
[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板變量</a>]</td>
</tr>
<tr id="gbookshowtempvar" style="display:none">
<td height="25" bgcolor="#FFFFFF"><strong>1、整體頁面支持的變量</strong><br>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr bgcolor="#FFFFFF">
<td width="33%" height="25"> <input name="textfield32" type="text" value="[!--newsnav--]">
:所在位置導航條</td>
<td width="34%"><input name="textfield724" type="text" value="[!--pagekey--]">
:頁面關鍵字 </td>
<td width="33%"><input name="textfield734" type="text" value="[!--pagedes--]">
:頁面描述 </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield33" type="text" value="[!--news.url--]">
:網站地址</td>
<td><input name="textfield34" type="text" value="[!--bname--]">
:留言分類名稱</td>
<td><input name="textfield925" type="text" value="[!--class.menu--]">
:一級欄目導航</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield35" type="text" value="[!--bid--]">
:留言分類ID</td>
<td><input name="textfield36" type="text" value="[!--listpage--]">
:分頁導航</td>
<td><input name="textfield37" type="text" value="[!--num--]">
:總記錄數</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><strong>支持公共模板變量</strong></td>
<td> </td>
<td> </td>
</tr>
</table>
<br>
<strong>2、列表內容支持的變量</strong><br>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr bgcolor="#FFFFFF">
<td width="33%" height="25">
<input name="textfield38" type="text" value="[!--lyid--]">
:留言ID</td>
<td width="34%">
<input name="textfield39" type="text" value="[!--name--]">
:留言者</td>
<td width="33%">
<input name="textfield40" type="text" value="[!--email--]">
:留言者郵箱</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield41" type="text" value="[!--mycall--]">
:留言者電話</td>
<td><input name="textfield42" type="text" value="[!--lytime--]">
:留言時間</td>
<td><input name="textfield43" type="text" value="[!--lytext--]">
:留言內容</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><input name="textfield44" type="text" value="[!--retext--]">
:回復內容</td>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>頁面格式:</strong> 列表頭[!--empirenews.listtemp--]列表內容[!--empirenews.listtemp--]列表尾<br>
<strong>回復顯示格式:</strong>[!--start.regbook--]回復顯示格式內容[!--end.regbook--]</p></td>
</tr>
</table>
<br>
<?
}
if($tname=="pljstemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=pljstemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">修改評論JS調用模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[pljstemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditOtherPubTemp">
<input name="tempname" type="hidden" id="tempname" value="pljstemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubpljstemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板格式:列表頭[!--empirenews.listtemp--]列表內容[!--empirenews.listtemp--]列表尾<br>
模板變量說明:</strong><br>
網站地址:[!--news.url--],欄目ID:[!--classid--],信息ID:[!--id--]<br>
評論ID:[!--plid--],評論內容:[!--pltext--],評論發表時間:[!--pltime--],發表者IP:[!--plip--]<br>
發表者ID:[!--userid--],發表者:[!--username--],支持數:[!--zcnum--],反對數:[!--fdnum--]<br>
<br>
<strong>信息評論調用地址:</strong><script src="[!--news.url--]e/pl/more/?classid=[!--classid--]&id=[!--id--]&num=10"></script><br>
<strong>專題評論調用地址:</strong><script src="[!--news.url--]e/pl/more/?doaction=dozt&classid=[!--classid--]&num=10"></script><br>
</p></td>
</tr>
</table>
</form>
<?
}
if($tname=="downpagetemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=downpagetemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">修改最終下載頁模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[downpagetemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditOtherPubTemp">
<input name="tempname" type="hidden" id="tempname" value="downpagetemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubdownpagetemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板變量說明:</strong><br>
網站地址:[!--news.url--],頁面標題:[!--pagetitle--],導航條:[!--newsnav--]<br>
頁面關鍵字:[!--pagekey--],頁面描述:[!--pagedes--],一級欄目導航:[!--class.menu--],欄目ID:[!--classid--]<br>
欄目名稱:[!--class.name--],父欄目ID:[!--bclass.id--],父欄目名稱:[!--bclass.name--],信息ID:[!--id--]<br>
地址ID:[!--pathid--],地址名稱:[!--down.name--],下載地址:[!--down.url--],文件真實地址:[!--true.down.url--]<br>
扣除積分:[!--fen--],下載等級:[!--group--],信息地址:[!--titleurl--],信息標題:[!--title--]<br>
發佈時間:[!--newstime--],標題圖片:[!--titlepic--],關鍵字:[!--keyboard--],點擊數:[!--onclick--]<br>
下載數:[!--totaldown--],發佈用戶ID:[!--userid--],發佈用戶名:[!--username--]</p></td>
</tr>
</table>
</form>
<?
}
if($tname=="downsofttemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=downsofttemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">下載地址模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="18" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[downsofttemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditOtherPubTemp">
<input name="tempname" type="hidden" id="tempname" value="downsofttemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubdownsofttemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板變量說明:</strong><br>
下載名稱:[!--down.name--],彈出下載地址:[!--down.url--],文件真實地址:[!--true.down.url--]<br>
下載地址號:[!--pathid--],欄目ID:[!--classid--],信息ID:[!--id--],扣除積分:[!--fen--],下載等級:[!--group--]<br>
網站地址:[!--news.url--],信息標題:[!--title--] </p></td>
</tr>
</table>
</form>
<?
}
if($tname=="onlinemovietemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=onlinemovietemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">在線播放地址模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="18" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[onlinemovietemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditOtherPubTemp">
<input name="tempname" type="hidden" id="tempname" value="onlinemovietemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=pubonlinemovietemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板變量說明:</strong><br>
觀看名稱:[!--down.name--],彈出觀看地址:[!--down.url--],文件真實地址:[!--true.down.url--]<br>
觀看地址號:[!--pathid--],欄目ID:[!--classid--],信息ID:[!--id--],扣除積分:[!--fen--],下載等級:[!--group--]<br>
網站地址:[!--news.url--],信息標題:[!--title--]</p></td>
</tr>
</table>
</form>
<?
}
if($tname=="listpagetemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=listpagetemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">列表分頁模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="18" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[listpagetemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditOtherPubTemp">
<input name="tempname" type="hidden" id="tempname" value="listpagetemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=publistpagetemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板變量說明:</strong><br>
本頁頁碼:[!--thispage--], 總頁數:[!--pagenum--], 每頁顯示條數:[!--lencord--] <br>
總條數:[!--num--], 分頁鏈接:[!--pagelink--], 下拉分頁:[!--options--] </p>
</td>
</tr>
</table>
</form>
<?
}
if($tname=="loginiframe"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=loginiframe>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">登陸狀態模板 (<a href="../../member/iframe" target="_blank">預覽</a>)</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="25" id="temptext" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[loginiframe]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditLoginIframe">
<input name="tempname" type="hidden" id="tempname" value="loginiframe">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=publoginiframe&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板格式:</strong>登陸前顯示內容[!--empirenews.template--]登陸後顯示內容<br>
<strong>模板變量說明: </strong><br>
用戶ID:[!--userid--],用戶名:[!--username--],網站地址:[!--news.url--]<br>
會員等級:[!--groupname--],現金:[!--money--],帳戶有效天數:[!--userdate--]<br>
有新信息:[!--havemsg--],積分:[!--userfen--]</p>
</td>
</tr>
</table>
</form>
<?
}
if($tname=="loginjstemp"||empty($tname))
{
?>
<form name="form1" method="post" action="../ecmstemp.php">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=loginjstemp>
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25"><div align="center">JS調用登陸狀態模板</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<textarea name="temptext" cols="110" rows="25" id="temptext" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[loginjstemp]))?></textarea>
</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <div align="center">
<input type="submit" name="Submit4" value="修改">
<input name="enews" type="hidden" id="enews" value="EditLoginJstemp">
<input name="tempname" type="hidden" id="tempname" value="loginjstemp">
<input type="reset" name="Submit22" value="重置">
<input name="gid" type="hidden" id="gid3" value="<?=$gid?>">
[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=publoginjstemp&tempid=1&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改記錄</a>]</div></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"><p><strong>模板格式:</strong>登陸前顯示內容[!--empirenews.template--]登陸後顯示內容<br>
<strong>模板變量說明:</strong> <br>
用戶ID:[!--userid--],用戶名:[!--username--],網站地址:[!--news.url--]<br>
會員等級:[!--groupname--],現金:[!--money--],帳戶有效天數:[!--userdate--]<br>
有新信息:[!--havemsg--],積分:[!--userfen--]<br>
<br>
<strong>調用地址:</strong>
<input name="textfield132" type="text" id="textfield132" size="60" value="<script src="<?=$public_r[newsurl]."e/member/login/loginjs.php";?>"></script>">
[<a href="../view/js.php?classid=1&js=<?=$public_r[newsurl]."e/member/login/loginjs.php";?><?=$ecms_hashur['ehref']?>" target="_blank">預覽</a>]
</p>
</td>
</tr>
</table>
</form>
<?
}
?>
</body>
</html>