You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
309 B
PHP

<?php
$content = new PageSection('users');
$content->set('users', $user_dir->list_users());
$content->set('admin', $active_user->admin);
$page = new PageSection('base');
$page->set('title', 'Users');
$page->set('content', $content);
$page->set('alerts', $active_user->pop_alerts());
echo $page->generate();