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

21 lines
487 B
PHP

<?php
$ctx->withData([
'title' => 'Novaconium Pages',
'pageclass' => 'novaconium',
'pageid' => 'controlPanel'
]);
if ( empty($ctx->session->get('username'))) {
$ctx->redirect->url('/novaconium/login');
$ctx->messages->error('You are not loggedin');
makeitso();
}
// Get the pages
$query = "SELECT id, title, created, updated, draft FROM pages";
$matched = $ctx->db->getRows($query);
$ctx->withData(['pages' => $matched]);
view('@novacore/pages', $ctx->data);