mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 17:59:22 +02:00

* moved some admin html code from php to twig templates (.html files) * minimum PHP version required by installer is now 5.1.2, cause of spl_autoload_register functon. * depracated Twig to version 1.20.0 cause of Autoloader * removed unused admin stylish template
19 lines
470 B
HTML
19 lines
470 B
HTML
<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>
|
|
</tr>
|
|
{% for plugin in plugins %}
|
|
<tr>
|
|
<td><div title="{{ plugin.description }}">{{ plugin.name }}</div></td>
|
|
<td>{{ plugin.file }}</td>
|
|
<td>{{ plugin.version }}</td>
|
|
<td>{{ plugin.author }}</td>
|
|
<td>{{ plugin.contact }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |