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.

15 lines
283 B
PHP

<?php
if(!$active_user->admin) {
require('views/error403.php');
die;
}
$content = new PageSection('tools');
$page = new PageSection('base');
$page->set('title', 'Tools');
$page->set('content', $content);
$page->set('alerts', $active_user->pop_alerts());
echo $page->generate();