mirror of
https://github.com/nextcloud/server.git
synced 2026-02-14 08:14:47 -05:00
* Full PHP tags * Alternative syntax for control structures * Semi-colon at the end of instructions
28 lines
544 B
PHP
28 lines
544 B
PHP
<?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>
|
|
<?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>
|
|
<td>enable</td>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|