@@ -3,6 +3,7 @@ namespace BNETDocs\Templates\User;
3
3
use \BNETDocs \Libraries \User ;
4
4
use \CarlBennett \MVC \Libraries \Common ;
5
5
use \CarlBennett \MVC \Libraries \Pair ;
6
+ use \DateTime ;
6
7
$ title = 'All Users ' ;
7
8
$ description = 'All users currently registered on BNETDocs ' ;
8
9
$ this ->opengraph ->attach (new Pair ('url ' , '/user/index ' ));
@@ -20,6 +21,7 @@ $form_order_by = [
20
21
'registered-asc ' => 'Registered (Ascending) ' ,
21
22
'registered-desc ' => 'Registered (Descending) ' ,
22
23
];
24
+ $ now = new DateTime ('now ' );
23
25
require ('./header.inc.phtml ' ); ?>
24
26
<div class="container">
25
27
<h1><?= $ title?> </h1>
@@ -37,14 +39,14 @@ require('./header.inc.phtml'); ?>
37
39
<input class="btn btn-sm btn-secondary" type="submit" value="Reorder"/>
38
40
</form>
39
41
<table class="table table-hover table-sm table-striped" id="users_tbl">
40
- <thead><tr><th>Account</th><th>Registered </th></tr></thead><tbody>
42
+ <thead><tr><th>Account</th><th>Member for </th></tr></thead><tbody>
41
43
<? foreach ($ this ->getContext ()->users as $ user )
42
44
{
43
45
$ user_url = $ user ->getURI ();
44
46
$ avatar_url = $ user ->getAvatarURI (22 ); ?>
45
47
<tr>
46
48
<td><a href="<?= $ user_url?> "><img class="mr-2" src="<?= $ avatar_url?> "/><?= filter_var ($ user ->getName (), FILTER_SANITIZE_FULL_SPECIAL_CHARS )?> </a></td>
47
- <td><time datetime=" <?= $ user ->getCreatedDateTime ()-> format ( ' c ' ) ?> "> <?= $ user -> getCreatedDateTime ()-> format ( ' l, F j, Y ' ) ?> </time ></td>
49
+ <td><?= ( $ user ->getCreatedEstimate () ?? ' <em>(null)</em> ' ) ? > </td>
48
50
</tr>
49
51
<? } ?>
50
52
</tbody></table>
0 commit comments