New features: - ContentBackup class with ZIP backup/restore and git versioning - Admin backup & restore page (content-backup.twig) with git init/commit/log/restore - Plugin type system: system (blue) vs content (green) with visual badges - PluginAPIInterface + AdminPluginAPI for plugin architecture - Essential plugin flag (cannot edit/deactivate/delete) Improvements: - Consolidated enabled_plugins config (removed plugins.enabled) - Removed Analytics/Logging toggles from admin config page - Fixed Dashboard plugin Twig comments rendered as text - Updated 20 guide files (NL+EN): configuratie, plugins, plugin-development, core-classes, theme-json, layouts, scss-styling, admin-beheerder, nieuw-thema, architectuur - Improved accessibility test script (grep -E, min/max checks) Cleanup: - Removed unused classes: ARIAComponents, AccessibilityManager, ContentSecurityPolicy, etc. - Removed vendor packages: mustache/mustache, php-mqtt/client - Removed old templates: logs.twig, statistics.twig (now plugins) - Moved language files to language/ directory Tests: - Pentest: 30/30 passed, 0 vulnerabilities - WCAG 2.1 AA: 25/25 passed, 100% compliance
61 lines
2.0 KiB
PHP
61 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* CodePress CMS Core Loader
|
|
*
|
|
* This file serves as the central entry point for the CodePress CMS core system.
|
|
* It loads all essential classes and configuration needed for the CMS to function.
|
|
*
|
|
* Architecture:
|
|
* - config.php: Configuration loader that merges default settings with config.json
|
|
* - ThemeManager.php: Twig-based theme rendering + SCSS compilation
|
|
* - CodePressCMS.php: Main CMS class handling content, navigation, search, and rendering
|
|
*
|
|
* Usage:
|
|
* This file is included by public/index.php, which then:
|
|
* 1. Loads configuration from config.php
|
|
* 2. Creates a new CodePressCMS instance with the config
|
|
* 3. Calls render() to output the complete page
|
|
*
|
|
* The separation allows for:
|
|
* - Clean public entry point (public/index.php)
|
|
* - Reusable core components
|
|
* - Proper class organization with PHPDoc documentation
|
|
*/
|
|
|
|
// Load configuration system - handles default settings and config.json merging
|
|
require_once 'config.php';
|
|
|
|
// Load Composer autoloader
|
|
$autoloader = dirname(__DIR__, 2) . '/vendor/autoload.php';
|
|
if (file_exists($autoloader)) {
|
|
require_once $autoloader;
|
|
}
|
|
|
|
// Load core utility classes
|
|
require_once 'class/Cache.php';
|
|
require_once 'class/RateLimiter.php';
|
|
require_once 'class/BotGuard.php';
|
|
require_once 'class/RequestLogger.php';
|
|
require_once 'class/GeoIP.php';
|
|
require_once 'class/Analytics.php';
|
|
require_once 'class/ThemeManager.php';
|
|
|
|
// Load Logger class - structured logging with log levels
|
|
require_once 'class/Logger.php';
|
|
require_once 'class/LogManager.php';
|
|
|
|
// Load Plugin system
|
|
require_once 'plugin/PluginAPIInterface.php';
|
|
require_once 'plugin/CMSAPI.php';
|
|
require_once 'plugin/AdminPluginAPI.php';
|
|
require_once 'plugin/PluginManager.php';
|
|
|
|
// Load ContentAPI class - provides CMS data access for PHP content files
|
|
require_once 'class/ContentAPI.php';
|
|
|
|
// Load main CMS class - handles content parsing, navigation, search, and page rendering
|
|
require_once 'class/CodePressCMS.php';
|
|
|
|
// Initialize logger (debug mode can be enabled in config)
|
|
Logger::init(); |