diff --git a/app/themes/custom/CustomTheme.php b/app/themes/custom/CustomTheme.php new file mode 100644 index 0000000..4f7af2f --- /dev/null +++ b/app/themes/custom/CustomTheme.php @@ -0,0 +1,8 @@ +menuService = new MenuService(); + $this->migrationService = new MigrationService(); + } + + /** + * @throws \Exception + */ + public function init(): void + { + //TODO + } + + public function deactivate(): void + { + //TODO + } +} \ No newline at end of file diff --git a/kernel/app_themes/custom/services/CustomService.php b/kernel/app_themes/custom/services/CustomService.php new file mode 100644 index 0000000..f7a9fbd --- /dev/null +++ b/kernel/app_themes/custom/services/CustomService.php @@ -0,0 +1,8 @@ +