mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 13:39:58 -06:00
30 lines
1.3 KiB
Plaintext
30 lines
1.3 KiB
Plaintext
Menu="Users"
|
|
Title="Users"
|
|
Tag="users"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2020, Lime Technology
|
|
* Copyright 2012-2020, 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.
|
|
*/
|
|
?>
|
|
<?
|
|
$submenu = !empty($display['users']) && substr($display['users'],0,5)!='Tasks';
|
|
if ($submenu) $path = './Users';
|
|
ksort($users);
|
|
?>
|
|
<?foreach ($users as $user):?>
|
|
<?$img = "/boot/config/plugins/dynamix/users/{$user['name']}.png"?>
|
|
<div class="user-list" style="text-align:center"><a class="<?=(!empty($user['desc']) ? 'info' : '')?>" href="<?=$path?>/UserEdit?name=<?=htmlspecialchars(urlencode($user['name']))?>"><img src="<?=(file_exists($img) ? autov($img) : '/webGui/images/user.png')?>" class="picture" border="0" width="48" height="48"><br><?=htmlspecialchars($user['name'])?><span><?=htmlspecialchars($user['desc'])?></span></a></div>
|
|
<?endforeach;?>
|
|
<div style='clear:both'></div>
|
|
<form method="POST" action="<?=$path?>/UserAdd">
|
|
<input type="submit" value="_(Add User)_"><?if ($submenu):?><input type="button" value="_(Done)_" onclick="done()"><?endif;?>
|
|
</form>
|