mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
+ bug fix (missing exception) + Using \phpbb\version_helper So, now, the version file have a new format : { "stable": { "<branch>": { "current": "<version>", [ "announcement": "<announcement link>", ] [ "download": "<download link>", ] }, "<branch>": { ... } }, "unstable": { } } PHPBB3-11366
88 lines
2.9 KiB
HTML
88 lines
2.9 KiB
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<a id="maincontent"></a>
|
|
|
|
<h1>{L_EXTENSIONS_ADMIN}</h1>
|
|
|
|
<p>{L_EXTENSIONS_EXPLAIN}</p>
|
|
|
|
<table class="table1">
|
|
<col class="row1" ><col class="row1" ><col class="row2" ><col class="row2" >
|
|
<thead>
|
|
<tr>
|
|
<th>{L_EXTENSION_NAME}</th>
|
|
<th width="10%">{L_CURRENT_VERSION}</th>
|
|
<th width="10%">{L_EXTENSION_OPTIONS}</th>
|
|
<th width="10%">{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> [ <a href="{enabled.U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE}</a> ]
|
|
<!-- 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 --> | <!-- 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> [ <a href="{disabled.U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE}</a> ]
|
|
<!-- 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 --> | <!-- ENDIF -->
|
|
<!-- END actions -->
|
|
</td>
|
|
</tr>
|
|
<!-- END disabled -->
|
|
<!-- ENDIF -->
|
|
</tbody>
|
|
</table>
|
|
<br />
|
|
|
|
<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 -->
|