aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_ext_list.html
blob: 3809eeda091f5128bbfa523cd46443fc2c2ef47b (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
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
<!-- INCLUDE overall_header.html -->

<a id="maincontent"></a>

	<h1>{L_EXTENSIONS_ADMIN}</h1>

	<p>{L_EXTENSIONS_EXPLAIN}</p>

	<form id="version_check_settings" method="post" action="{U_ACTION}" style="display:none">

	<fieldset>
		<legend>{L_EXTENSIONS_VERSION_CHECK_SETTINGS}</legend>
		<dl>
			<dt><label for="force_unstable">{L_FORCE_UNSTABLE}{L_COLON}</label></dt>
			<dd>
				<label><input type="radio" name="force_unstable" class="radio" value="1"<!-- IF FORCE_UNSTABLE --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
				<label><input type="radio" name="force_unstable" class="radio" value="0"<!-- IF not FORCE_UNSTABLE --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
			</dd>
		</dl>

		<p class="submit-buttons">
			<input class="button1" type="submit" name="update" value="{L_SUBMIT}" />&nbsp;
			<input class="button2" type="reset" name="reset" value="{L_RESET}" />
			<input type="hidden" name="action" value="set_config_version_check_force_unstable" />
			{S_FORM_TOKEN}
		</p>
	</fieldset>
	</form>

	<table class="table1">
		<col class="row1" ><col class="row1" ><col class="row2" ><col class="row2" >
	<thead>
		<tr>
			<th>{L_EXTENSION_NAME}</th>
			<th style="text-align: center;" width="20%">{L_CURRENT_VERSION}</th>
			<th style="text-align: center;" width="10%">{L_EXTENSION_OPTIONS}</th>
			<th style="text-align: center;" width="25%">{L_EXTENSION_ACTIONS}</th>
		</tr>
	</thead>
	<tbody>
		<!-- IF .enabled -->
		<tr>
			<td class="row3" colspan="5"><strong>{L_EXTENSIONS_ENABLED}</strong></td>
		</tr>
		<!-- BEGIN enabled -->
		<tr class="ext_enabled">
			<td><strong>{enabled.META_DISPLAY_NAME}</strong></td>
			<td style="text-align: center;">
				<!-- IF enabled.S_VERSIONCHECK -->
				<strong <!-- IF enabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{enabled.META_VERSION}</strong>
				<!-- ELSE -->
				{enabled.META_VERSION}
				<!-- ENDIF -->
			</td>
			<td style="text-align: center;"><a href="{enabled.U_DETAILS}">{L_DETAILS}</a></td>
			<td style="text-align: center;">
				<!-- BEGIN actions -->
					<a href="{enabled.actions.U_ACTION}"<!-- IF enabled.actions.L_ACTION_EXPLAIN --> title="{enabled.actions.L_ACTION_EXPLAIN}"<!-- ENDIF -->>{enabled.actions.L_ACTION}</a>
					<!-- IF not enabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
				<!-- END actions -->
			</td>
		</tr>
		<!-- END enabled -->
		<!-- ENDIF -->

		<!-- IF .disabled -->
		<tr>
			<td class="row3" colspan="4"><strong>{L_EXTENSIONS_DISABLED}</strong></td>
		</tr>
		<!-- BEGIN disabled -->
		<tr class="ext_disabled">
			<td><strong>{disabled.META_DISPLAY_NAME}</strong></td>
			<td style="text-align: center;">
				<!-- IF disabled.S_VERSIONCHECK -->
				<strong <!-- IF disabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{disabled.META_VERSION}</strong>
				<!-- ELSE -->
				{disabled.META_VERSION}
				<!-- ENDIF -->
			</td>
			<td style="text-align: center;">
				<!-- IF disabled.U_DETAILS --><a href="{disabled.U_DETAILS}">{L_DETAILS}</a><!-- ENDIF -->
			</td>
			<td style="text-align: center;">
				<!-- BEGIN actions -->
					<a href="{disabled.actions.U_ACTION}"<!-- IF disabled.actions.L_ACTION_EXPLAIN --> title="{disabled.actions.L_ACTION_EXPLAIN}"<!-- ENDIF -->>{disabled.actions.L_ACTION}</a>
					<!-- IF not disabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
				<!-- END actions -->
			</td>
		</tr>
		<!-- END disabled -->
		<!-- ENDIF -->
	</tbody>
	</table>

	<fieldset class="quick">
		<p class="small"><a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE_ALL}</a> &bull; <a onclick="phpbb.toggleDisplay('version_check_settings');">{L_SETTINGS}</a></p>
		{S_FORM_TOKEN}
	</fieldset>

	<table class="table1">
	<tr>
		<th>{L_EXTENSION_UPDATE_HEADLINE}</th>
	</tr>
	<tr>
		<td class="row3">{L_EXTENSION_UPDATE_EXPLAIN}</td>
	</tr>
	<tr>
		<th>{L_EXTENSION_REMOVE_HEADLINE}</th>
	</tr>
	<tr>
		<td class="row3">{L_EXTENSION_REMOVE_EXPLAIN}</td>
	</tr>
	</tbody>
	</table>

<!-- INCLUDE overall_footer.html -->