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/page.php

41 lines
653 B
PHP
Raw Normal View History

2018-06-12 07:53:27 +02:00
<?PHP
/**
* This page offers the opportunity to edit static pages.
*/
/*
* 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.
/*
* Output
*/
echo printBackendHead($translations['start']);
echo printBackendHeader($translations['start'], $translations['helpStart']);
echo '
<div id="mainWrapper">
';
echo printBackendNav($translations);
echo '
<main>';
echo '
</main>
</div>';
echo printBackendEnd();
?>