diff --git a/app/config/commands.php b/app/config/commands.php new file mode 100644 index 0000000..580cf4a --- /dev/null +++ b/app/config/commands.php @@ -0,0 +1,17 @@ +, , ] + Example: + ['test:cmd', 'This is a test command', 'TestCommand'] + Explanation: + Will call non-static TestCommand::handle($args) in app/commands/TestCommand.php +*/ + +return [ +]; diff --git a/app/views/admin.php b/app/views/admin.php index adc3c83..38c9e4a 100644 --- a/app/views/admin.php +++ b/app/views/admin.php @@ -324,7 +324,7 @@
-

{{ __('app.backup') }}

+

{{ __('app.export') }}

diff --git a/asatru b/asatru index ade81df..2c4268b 100644 --- a/asatru +++ b/asatru @@ -3,9 +3,8 @@ /* Asatru PHP (dnyAsatruPHP) developed by Daniel Brendel - (C) 2019 - 2023 by Daniel Brendel + (C) 2019 - 2024 by Daniel Brendel - Version: 1.0 Contact: dbrendel1988gmailcom GitHub: https://github.com/danielbrendel/ @@ -32,6 +31,9 @@ require_once __DIR__ . '/vendor/danielbrendel/asatru-php-framework/src/console.p //Require database handler require_once __DIR__ . '/vendor/danielbrendel/asatru-php-framework/src/database.php'; +//Require command handler +require_once __DIR__ . '/vendor/danielbrendel/asatru-php-framework/src/commands.php'; + //Process further if in debug mode if ((isset($_ENV['APP_DEBUG'])) && ($_ENV['APP_DEBUG'])) { Asatru\Console\handleInput($argv); diff --git a/package.json b/package.json index cd4217a..6d81082 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "asatruphp", "version": "1.0.0", - "description": "(C) 2019 - 2023 by Daniel Brendel", + "description": "(C) 2019 - 2024 by Daniel Brendel", "main": "index.js", "directories": {}, "scripts": { diff --git a/public/index.php b/public/index.php index c5b6f95..de09976 100644 --- a/public/index.php +++ b/public/index.php @@ -3,9 +3,8 @@ /* Asatru PHP (dnyAsatruPHP) developed by Daniel Brendel - (C) 2019 - 2023 by Daniel Brendel + (C) 2019 - 2024 by Daniel Brendel - Version: 1.0 Contact: dbrendel1988gmailcom GitHub: https://github.com/danielbrendel/ diff --git a/public/manifest.json b/public/manifest.json index 61ef106..6548a16 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1 +1,15 @@ -{"name":"Gartenwahnsinn","short_name":"Gartenwahnsinn","icons":[{"src":"\/logo.png","sizes":"256x256","type":"image\/png"}],"start_url":"\/","display":"fullscreen","background_color":"white","theme_color":"white"} \ No newline at end of file +{ + "name": "HortusFox", + "short_name": "HortusFox", + "icons": [ + { + "src": "/logo.png", + "sizes": "256x256", + "type": "image/png" + } + ], + "start_url": "/", + "display": "fullscreen", + "background_color": "white", + "theme_color": "white" +} \ No newline at end of file