2025-01-18 09:06:54 +01:00
|
|
|
<?php defined('KOBLOG') or die('Koblog CMS.'); ?>
|
2018-11-07 15:40:22 +01:00
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
<?php
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2025-01-18 16:11:19 +01:00
|
|
|
echo "<div class='d-flex justify-content-between align-content-center'>";
|
|
|
|
|
2019-05-18 11:54:39 +02:00
|
|
|
echo Bootstrap::pageTitle(array('title'=>$L->g('Users'), 'icon'=>'users'));
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2025-01-18 16:11:19 +01:00
|
|
|
echo "<div>";
|
2018-04-15 22:23:11 +02:00
|
|
|
echo Bootstrap::link(array(
|
2025-01-18 16:43:21 +01:00
|
|
|
'title'=>$L->g('New user'),
|
2018-04-15 22:23:11 +02:00
|
|
|
'href'=>HTML_PATH_ADMIN_ROOT.'new-user',
|
2025-01-18 16:11:19 +01:00
|
|
|
'icon'=>'plus',
|
|
|
|
'class'=>'btn btn-outline-success'
|
2018-04-15 22:23:11 +02:00
|
|
|
));
|
2015-10-19 00:45:58 +02:00
|
|
|
|
|
|
|
echo '
|
2025-01-18 16:11:19 +01:00
|
|
|
</div></div>
|
|
|
|
<div class="card">
|
|
|
|
<table class="table m-0">
|
|
|
|
<thead>
|
|
|
|
<tr class="card-header">
|
|
|
|
<th class="border-bottom-0" scope="col">'.$L->g('User').'</th>
|
|
|
|
<th class="border-bottom-0 d-none d-lg-table-cell" scope="col">'.$L->g('Username').'</th>
|
|
|
|
<th class="border-bottom-0" scope="col">'.$L->g('Email').'</th>
|
|
|
|
<th class="border-bottom-0" scope="col">'.$L->g('Status').'</th>
|
|
|
|
<th class="border-bottom-0" scope="col">'.$L->g('Role').'</th>
|
|
|
|
<th class="border-bottom-0 d-none d-lg-table-cell" scope="col">'.$L->g('Registered').'</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-10-19 00:45:58 +02:00
|
|
|
';
|
|
|
|
|
2018-08-03 18:59:23 +02:00
|
|
|
$list = $users->keys();
|
2018-07-25 23:42:00 +02:00
|
|
|
foreach ($list as $username) {
|
|
|
|
try {
|
|
|
|
$user = new User($username);
|
2025-01-18 16:11:19 +01:00
|
|
|
echo '<tr class="card-tablebody">';
|
|
|
|
echo '<td><img class="profilePicture me-1" alt="" src="'.(Sanitize::pathFile(PATH_UPLOADS_PROFILES.$user->username().'.png')?DOMAIN_UPLOADS_PROFILES.$user->username().'.png':HTML_PATH_CORE_IMG.'default.svg').'" /><a href="'.HTML_PATH_ADMIN_ROOT.'edit-user/'.$username.'">'.$user->displayName().'</a></td>';
|
|
|
|
echo '<td class="d-none d-lg-table-cell">'.$user->username().'</td>';
|
2018-07-25 23:42:00 +02:00
|
|
|
echo '<td>'.$user->email().'</td>';
|
|
|
|
echo '<td>'.($user->enabled()?'<b>'.$L->g('Enabled').'</b>':$L->g('Disabled')).'</td>';
|
|
|
|
if ($user->role()=='admin') {
|
|
|
|
echo '<td>'.$L->g('Administrator').'</td>';
|
|
|
|
} elseif ($user->role()=='editor') {
|
|
|
|
echo '<td>'.$L->g('Editor').'</td>';
|
2019-05-18 11:54:39 +02:00
|
|
|
} elseif ($user->role()=='author') {
|
|
|
|
echo '<td>'.$L->g('Author').'</td>';
|
2018-07-25 23:42:00 +02:00
|
|
|
} else {
|
|
|
|
echo '<td>'.$L->g('Reader').'</td>';
|
|
|
|
}
|
|
|
|
echo '<td class="d-none d-lg-table-cell">'.Date::format($user->registered(), DB_DATE_FORMAT, ADMIN_PANEL_DATE_FORMAT).'</td>';
|
|
|
|
echo '</tr>';
|
|
|
|
} catch (Exception $e) {
|
|
|
|
// Continue
|
2018-06-25 23:17:43 +02:00
|
|
|
}
|
2015-10-19 00:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2025-01-18 16:11:19 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2018-04-15 22:23:11 +02:00
|
|
|
';
|