blob: 85ad71a85622f8a851df17aeedb272da3f66399e (
plain)
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
|
<ste:load name="master.html" />
<ste:block name="content">
<ste:default_error noescape="y" />
<ste:default_notice noescape="y" />
<ste:default_success />
<form action="$rel_path_to_root/backend/plugin/list" method="post">
<table class="listtab fullwidth">
<thead>
<tr>
<th> </th>
<th><ste:get_translation for="plugin_name" /></th>
<th><ste:get_translation for="plugin_version" /></th>
<th><ste:get_translation for="plugin_isactive" /></th>
<th><ste:get_translation for="plugin_description" /></th>
<th><ste:get_translation for="plugin_author" /></th>
<th><ste:get_translation for="plugin_web" /></th>
<th><ste:get_translation for="plugin_help" /></th>
</tr>
</thead>
<tbody>
<ste:foreach array="plugins" value="p">
<tr>
<td><input type="checkbox" name="plugins_multiselect[]" value="$p[id]" /></td>
<td><ste:escape>$p[name]</ste:escape></td>
<td><ste:escape>$p[versiontext]</ste:escape></td>
<td>?{$p[active]|<strong><ste:get_translation for="yes" />|<ste:get_translation for="no" />}</td>
<td><ste:escape>$p[description]</ste:escape></td>
<td><ste:escape>$p[author]</ste:escape></td>
<td>?{$p[web]|<a href="<ste:escape>$p[web]</ste:escape>"><ste:escape>$p[web]</ste:escape></a>|}</td>
<td>?{$p[help]|<a href="$rel_path_to_root/backend/plugin/help/$p[id]"><ste:get_translation for="plugin_help" /></a>|}</td>
</tr>
<ste:else>
<tr><td colspan="8" style="text-align: center;"><em><ste:get_translation for="no_plugins" /></em></td></tr>
</ste:else>
</ste:foreach>
</tbody>
</table>
<div>
<input type="submit" name="delete" value="<ste:get_translation for='delete' />" />
<select name="really_delete">
<option value="no" selected="selected"><ste:get_translation for="no" /></option>
<option value="yes"><ste:get_translation for="yes" /></option>
<option value="force"><ste:get_translation for="enforce" /></option>
</select>
|
<input type="submit" name="update" value="<ste:get_translation for='plugin_update' />" />
|
<input type="submit" name="activate" value="<ste:get_translation for='plugin_activate' />" />
|
<input type="submit" name="deactivate" value="<ste:get_translation for='plugin_deactivate' />" />
</div>
</form>
</ste:block>
|