From 8d6ff7fffea32439ba999800cc34a24e3fa624d7 Mon Sep 17 00:00:00 2001 From: Ortwin Pinke Date: Fri, 6 Sep 2024 19:33:53 +0200 Subject: [PATCH] init plugin backend areas, needed xml and composer files --- composer.json | 16 ++++++++++ includes/config.plugin.php | 6 ++++ includes/include.fake_data_config.php | 1 + includes/include.fake_data_dashboard.php | 1 + plugin.xml | 39 ++++++++++++++++++++++++ xml/lang_de_DE.xml | 13 ++++++++ xml/lang_en_US.xml | 13 ++++++++ 7 files changed, 89 insertions(+) create mode 100644 composer.json create mode 100644 includes/config.plugin.php create mode 100644 includes/include.fake_data_config.php create mode 100644 includes/include.fake_data_dashboard.php create mode 100644 plugin.xml create mode 100644 xml/lang_de_DE.xml create mode 100644 xml/lang_en_US.xml diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ab540e2 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "phpbo/fakedata", + "description": "Fake Data Plugin for CONTENIDO database", + "minimum-stability": "stable", + "license": "GPL-3.0-only", + "authors": [ + { + "name": "Ortwin Pinke", + "email": "info@php-backoffice.de" + } + ], + "require": { + "php": "^7.4 || ^8.0", + "fakerphp/faker": "v1.23.1" + } +} \ No newline at end of file diff --git a/includes/config.plugin.php b/includes/config.plugin.php new file mode 100644 index 0000000..4d34e25 --- /dev/null +++ b/includes/config.plugin.php @@ -0,0 +1,6 @@ + + + + + Con Fake Data + fake_data + 32C36B75-8B13-4DCE-8F7B-578AB8F05FBF + Fake Data Generator for CONTENIDO database + Ortwin Pinke + Ortwin Pinke php-backoffice.de + info@php-backoffice.de + https://php-backoffice.de + 0.0.1 + + + + + + + fake_data + fake_data_config + + + fake_data + fake_data_config + + + + + + + + + + + + \ No newline at end of file diff --git a/xml/lang_de_DE.xml b/xml/lang_de_DE.xml new file mode 100644 index 0000000..5b5e48b --- /dev/null +++ b/xml/lang_de_DE.xml @@ -0,0 +1,13 @@ + + + + + + +
FakeData
+ Dashboard + Einstellungen +
+
+
+
\ No newline at end of file diff --git a/xml/lang_en_US.xml b/xml/lang_en_US.xml new file mode 100644 index 0000000..bbb1d6b --- /dev/null +++ b/xml/lang_en_US.xml @@ -0,0 +1,13 @@ + + + + + + +
FakeData
+ Dashboard + Configurations +
+
+
+
\ No newline at end of file