This repository has been archived on 2022-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
md-cms/edit/index.php

49 lines
827 B
PHP
Raw Normal View History

2018-06-12 07:53:27 +02:00
<?PHP
/**
* Start page of the backend.
* Offers a dashboard.
*
* @author Joshua Ramon Enslin <joshua@jrenslin.de>
*/
/*
* Require files and ensure environment.
*/
require_once __DIR__ . "/inc/functions.php";
ensureEnvironment(); // Ensure existence of system files.
$translations = loadLanguage(); // Load translations.
ensureBackendEnv(); // Ensure session is started etc.
$pages = loadPages(); // Load overview of pages.
2018-06-12 07:53:27 +02:00
/*
* Load data.
*/
/*
* Output
*/
echo printBackendHead($translations['start'], $translations['start'], $settings['logo']);
2018-06-12 07:53:27 +02:00
echo printBackendHeader($translations['start'], $translations['helpStart']);
echo '
<div id="mainWrapper">
';
echo printBackendNav($translations);
echo '
<main>';
echo '
</main>
</div>';
echo printBackendEnd();
?>