21 lines
487 B
PHP
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); |