82 lines
3.9 KiB
PHP
82 lines
3.9 KiB
PHP
<div class="container">
|
|
<h1>Admin/index</h1>
|
|
|
|
<div class="box">
|
|
|
|
<!-- echo out the system feedback (error and success messages) -->
|
|
<?php $this->renderFeedbackMessages(); ?>
|
|
|
|
<h3>What happens here ?</h3>
|
|
|
|
<div>
|
|
This controller/action/view shows a list of all users in the system. with the ability to soft delete a user
|
|
or suspend a user.
|
|
</div>
|
|
<div>
|
|
<table class="overview-table">
|
|
<thead>
|
|
<tr>
|
|
<td>Id</td>
|
|
<td>Avatar</td>
|
|
<td>Username</td>
|
|
<td>User's email</td>
|
|
<td>Activated ?</td>
|
|
<td>Link to user's profile</td>
|
|
<td>Group</td>
|
|
<td>suspension Time in days</td>
|
|
<td>Soft delete</td>
|
|
<td>Submit</td>
|
|
</tr>
|
|
</thead>
|
|
<?php foreach ($this->users as $user) { ?>
|
|
<tr class="<?= ($user->user_active == 0 ? 'inactive' : 'active'); ?>">
|
|
<td><?= $user->user_id; ?></td>
|
|
<td class="avatar">
|
|
<?php if (isset($user->user_avatar_link)) { ?>
|
|
<img src="<?= $user->user_avatar_link; ?>"/>
|
|
<?php } ?>
|
|
</td>
|
|
<td><?= $user->user_name; ?></td>
|
|
<td><?= $user->user_email; ?></td>
|
|
<td><?= ($user->user_active == 0 ? 'No' : 'Yes'); ?></td>
|
|
<td>
|
|
<a href="<?= Config::get('URL') . 'profile/showProfile/' . $user->user_id; ?>">Profile</a>
|
|
</td>
|
|
<td>
|
|
<form action="<?= Config::get('URL'); ?>admin/changeUserGroup" method="post">
|
|
<input type="hidden" name="user_id" value="<?= $user->user_id; ?>" />
|
|
<select name="group_id">
|
|
<?php foreach ($this->groups as $group) { ?>
|
|
<option value="<?= $group->group_id; ?>" <?= (isset($user->user_account_type) && (int)$user->user_account_type === (int)$group->group_id ? 'selected' : '') ?>>
|
|
<?= (int)$group->group_id; ?> - <?= htmlspecialchars($group->group_name, ENT_QUOTES, 'UTF-8'); ?>
|
|
</option>
|
|
<?php } ?>
|
|
</select>
|
|
<input type="submit" value="Save" />
|
|
</form>
|
|
</td>
|
|
<form action="<?= config::get("URL"); ?>admin/actionAccountSettings" method="post">
|
|
<td><input type="number" name="suspension" /></td>
|
|
<td><input type="checkbox" name="softDelete" <?php if ($user->user_deleted) { ?> checked <?php } ?> /></td>
|
|
<td>
|
|
<input type="hidden" name="user_id" value="<?= $user->user_id; ?>" />
|
|
<input type="submit" />
|
|
</td>
|
|
</form>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
</div>
|
|
|
|
<h3>Register a new user</h3>
|
|
|
|
<form method="post" action="<?php echo Config::get('URL'); ?>register/register_action">
|
|
<input type="text" name="user_name" placeholder="Username" required />
|
|
<input type="email" name="user_email" placeholder="Email address" required />
|
|
<input type="password" name="user_password_new" placeholder="Password" required autocomplete="off" />
|
|
<input type="submit" value="Register User" />
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|