Files
novaconium/controllers/settings.php
T
2026-07-04 07:43:33 -07:00

15 lines
332 B
PHP

<?php
$ctx->withData([
'title' => 'Novaconium Settings',
'pageclass' => 'novaconium',
'pageid' => 'controlPanel'
]);
if ( empty($ctx->session->get('username'))) {
$ctx->redirect->url('/novaconium/login');
$ctx->messages->error('You are not loggedin');
makeitso();
}
view('@novacore/settings', $ctx->data);