tbrehm
2005-11-09 83b0d0f038461786c6e62b381c6e0c05997d7ff6
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
<script language="JavaScript">
<!--
function del_module(link) {
  if(window.confirm("{tmpl_var name='module_del_txt'}")) {
      location.href = link;
  }
}
function del_menu(link) {
  if(window.confirm("{tmpl_var name='menu_del_txt'}")) {
      location.href = link;
  }
}
function del_menuitem(link) {
  if(window.confirm("{tmpl_var name='item_del_txt'}")) {
      location.href = link;
  }
}
 
//-->
</script>
<form name="myform" action="module_show.php" method="POST">
<div class="frmTextHead"><tmpl_var name="header_txt"></div><br />
<fieldset style="width:250px;"><legend class="frmText11"><b>{tmpl_var name='module_txt'}</b></legend>
<table border="0" cellspacing="0" cellpadding="2">
  <tr>
    <td width="126" class="frmText11"><tmpl_var name="title_txt">:</td>
    <td width="366" class="frmText11">{tmpl_var name='title'}</td>
  </tr>
  <tr>
    <td width="126" class="frmText11"><tmpl_var name="name_txt">:</td>
    <td width="366" class="frmText11">{tmpl_var name='name'}</td>
  </tr>
  <tr>
    <td colspan="2" class="frmText11">&nbsp;</td>
  </tr>
  <tr>
    <td colspan="2" class="frmText11">
      <input type="button" name="ed1" value="{tmpl_var name='properties_txt'}" onClick="location.href='module_edit.php?id={tmpl_var name='name'}'" class="button" />
      <input type="button" name="ed2" value="{tmpl_var name='delete_txt'}" onClick="del_module('module_del.php?id={tmpl_var name='name'}');" class="button" />
      <input type="button" name="ed3" value="{tmpl_var name='new_menu_txt'}" onClick="location.href='module_nav_edit.php?module_name={tmpl_var name='name'}'" class="button" /></td>
  </tr>
</table>
</fieldset>
<table width="500" border="0" cellspacing="0" cellpadding="2">
  <tr>
    <td colspan="2" class="frmText11">&nbsp;</td>
  </tr>
  <tmpl_var name="nav">
  <tr>
    <td colspan="2" class="frmText11">&nbsp;</td>
  </tr>
</table>
</form>