Files
webgui/plugins/dynamix/UserList.page
2016-02-09 16:19:04 -08:00

28 lines
1.1 KiB
Plaintext

Menu="Users"
Title="Users"
---
<?PHP
/* Copyright 2015, Lime Technology
* Copyright 2015, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<?foreach ($users as $user):?>
<?$img = "/boot/config/plugins/dynamix/users/{$user['name']}.png"?>
<div class="user-list"><center><a class="<?=(!empty($user['desc']) ? 'info' : '')?>" href="<?=$path?>/UserEdit?name=<?=$user['name'];?>"><img src="<?=(file_exists($img) ? autov($img) : '/webGui/images/user.png')?>" class="picture" border="0" width="48" height="48"><br><?=$user['name']?><span><?=$user['desc']?></span></a></center></div>
<?endforeach;?>
<div style='clear:both'></div>
<form method="GET" action="<?=$path?>/UserAdd">
<input type="submit" value="Add User">
<?if (!empty($display['users']) && substr($display['users'],0,5)!='Tasks'):?>
<input type="button" value="Done" onclick="done()">
<?endif;?>
</form>