Remove media menu option and verify route handling

This commit is contained in:
2026-06-23 16:20:29 +02:00
parent b0eff6a742
commit aabc41aecc
59 changed files with 115 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
return [
'name' => 'CodePress Admin',
'version' => '1.0.0',
'debug' => $_ENV['APP_DEBUG'] ?? false,
'timezone' => 'Europe/Amsterdam',
// Paths
'admin_root' => __DIR__ . '/../',
'codepress_root' => __DIR__ . '/../../',
'content_dir' => __DIR__ . '/../../content/',
'config_json' => __DIR__ . '/../../config.json',
'plugins_dir' => __DIR__ . '/../../plugins/',
'admin_config' => __DIR__ . '/admin.json',
'log_file' => __DIR__ . '/../storage/logs/admin.log',
];