mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00

* added option to uninstall plugin * added option to require specified myaac or php version for plugins * added links loaded from database to admin panel - for future plugins * added few characters hooks * fixed some kathrine template js bug when shop is disabled
21 lines
568 B
Twig
21 lines
568 B
Twig
<b>Installed plugins:</b>
|
|
<table class="table" border="0" align="center">
|
|
<tr>
|
|
<th>Plugin name (Description on hover)</th>
|
|
<th>Filename</th>
|
|
<th>Version</th>
|
|
<th>Author</th>
|
|
<th>Contact</th>
|
|
<th>Options</th>
|
|
</tr>
|
|
{% for plugin in plugins %}
|
|
<tr>
|
|
<td><div title="{{ plugin.description }}">{{ plugin.name }}</div></td>
|
|
<td>{{ plugin.file }}.json</td>
|
|
<td>{{ plugin.version }}</td>
|
|
<td>{{ plugin.author }}</td>
|
|
<td>{{ plugin.contact }}</td>
|
|
<td><a href="?p=plugins&uninstall={{ plugin.file }}">Uninstall</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |