2011-03-02 13:56:48 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Template for admin pages
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<h1>Administration</h1>
|
|
|
|
<h2>Plugins</h2>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Version</th>
|
|
|
|
<th>Author</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2011-03-09 22:13:52 +03:00
|
|
|
<?php foreach($_["plugins"] as $plugin): ?>
|
|
|
|
<td><?php echo $plugin["info"]["id"] ?></td>
|
|
|
|
<td><?php echo $plugin["info"]["version"] ?></td>
|
|
|
|
<td><?php echo $plugin["info"]["name"] ?></td>
|
|
|
|
<td><?php echo $plugin["info"]["author"] ?></td>
|
2011-03-02 13:56:48 +03:00
|
|
|
<td>enable</td>
|
2011-03-09 22:13:52 +03:00
|
|
|
<?php endforeach; ?>
|
2011-03-02 13:56:48 +03:00
|
|
|
</tbody>
|
|
|
|
</table>
|