Project

General

Profile

1
<!-- BEGIN main_block -->
2

    
3
<!-- BEGIN headline_block -->
4
<h4 style="margin: 0; border-bottom: 1px solid #DDD; padding-bottom: 5px;">
5
    <a href="{CANCEL_URL}" title="{ADMINISTRATION_TOOLS}">{ADMINISTRATION_TOOLS}</a>
6
    »
7
    <a href="{ADMINTOOL_LINK}" title="" alt="">{TOOL_NAME}</a>
8
</h4>
9
<!-- END headline_block -->
10
<h2>
11
  {HEADING}
12
</h2>
13
<!-- BEGIN core_info_block -->
14
<div class="{CORE_MSGCLS}">{CORE_MSGTXT}</div>
15
<!-- END core_info_block -->
16
<div id="filter_and_tables" class="filteroptions">
17
<p>
18
  {HOWTO}
19
</p>
20
<!-- BEGIN message_block -->
21
<div class="{MSGCLS}">{MSGTXT}</div>
22
<!-- END message_block -->
23
<form name="store_settings" action="{ADMIN_URL}admintools/tool.php?tool={MODULE_NAME}" method="post">
24
  <input type="hidden" name="url" value="{PAGE_ID}" />
25
  <input type="hidden" name="section_id" value="{SECTION_ID}" />
26
  <input type="hidden" name="cmd" value="tool" />
27
  <input type="hidden" name="action" value="save" />
28
  {FTAN}
29
  <div id="selectOutputFilters">
30
    <table class="filter_table_title">
31
          <thead>
32
            <tr>
33
              <th class="filter_check_all" style="opacity: 1;">
34
              {SET_ACTIVE}
35
              </th>
36
              <th>
37
            <!--  <input type="checkbox" id="table_check_all"> -->
38
              </th>
39
            </tr>
40
          </thead>
41
    </table>
42
      <div class="filter_table_list_container">
43
        <input type="hidden" value="0" name="filter_forced">
44
        <table class="filter_table_select">
45

    
46
          <tbody>
47
<!-- BEGIN filter_block -->
48
            <tr>
49
              <td class="filter_table_name">{FNAME}</td>
50
              <td>
51
                <input type="checkbox" {FCHECKED} value="1" name="{FNAME}" id="cb-{FNAME}">
52
              </td>
53
            </tr>
54
<!-- END filter_block -->
55
          </tbody>
56
        </table>
57
      </div>
58
  </div>
59

    
60
  <div id="selectFilterContent">
61
<!-- BEGIN email-filter_block -->
62
  <table id="email-filter" style="{DISPLAY_EMAIL_SETTINGS}">
63
    <tbody>
64
      <tr>
65
        <td>
66
          {AT_REPLACEMENT}:
67
        </td>
68
        <td>
69
          <input type="text" style="width: 160px" value="{at_replacement}" name="at_replacement"/>
70
        </td>
71
      </tr>
72
      <tr>
73
        <td>
74
          {DOT_REPLACEMENT}:
75
        </td>
76
        <td>
77
          <input type="text" style="width: 160px" value="{dot_replacement}" name="dot_replacement"/>
78
        </td>
79
      </tr>
80
    <tr>
81
        <td >{EMAIL_FILTER}:</td>
82
        <td>
83
            <input type="checkbox" name="email_filter" value="1" {EMAIL_FILTER_CHECK}>
84
        </td>
85
    </tr>
86
    <tr>
87
        <td>{MAILTO_FILTER}:</td>
88
        <td>
89
            <input type="checkbox" name="mailto_filter" value="1" {MAILTO_FILTER_CHECK}>
90
        </td>
91
    </tr>
92
    </tbody>
93
  </table>
94
<!-- END email-filter_block -->
95
  </div>
96

    
97
  <div style="padding-top: 1.525em; clear: both; position: relative;">
98
    <table>
99
      <tr>
100
        <td>
101
          <input type="submit" value="{SAVE}" />
102
        </td>
103
        <td>
104
          <input type="button" value="{CANCEL}" onclick="window.location = '{CANCEL_URL}';" />
105
        </td>
106
      </tr>
107
    </table>
108
  </div>
109

    
110
</form>
111
</div>
112
<!-- END main_block -->
(1-1/2)