server/admin/templates/index.php
François KUBLER 7faf852561 Merge branch 'refactoring' of git.kde.org:owncloud into refactoring
Conflicts:
	admin/templates/index.php
	templates/layout.admin.php
	templates/layout.user.php

All conflicts are fixed.
2011-03-09 22:46:17 +01:00

12 lines
222 B
PHP

<?php
/*
* Template for admin pages
*/
?>
<h1>Administration</h1>
<ul>
<?php foreach($_["adminpages"] as $i): ?>
<li><a href="<?php echo $i["href"]; ?>"><?php echo $i["name"]; ?></a></li>
<?php endforeach; ?>
</ul>