mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
12 lines
200 B
PHP
12 lines
200 B
PHP
<?php
|
|
/*
|
|
* Template for admin pages
|
|
*/
|
|
?>
|
|
<h1>Administration</h1>
|
|
|
|
<ul>
|
|
<? foreach( $_["adminpages"] as $i ){ ?>
|
|
<li><a href="<? echo $i["href"] ?>"><? echo $i["name"] ?></a></li>
|
|
<? } ?>
|
|
</ul>
|