From 83cb803b646f911097f232d955ccc265944a1f54 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 21 Aug 2023 16:41:19 +0200 Subject: [PATCH] prepare namespace (move files) wip --- inc/lib.kutrl.activityreport.php => src/ActivityReportActions.php | 0 _admin.php => src/Backend.php | 0 _config.php => src/Config.php | 0 _public.php => src/Frontend.php | 0 _install.php => src/Install.php | 0 inc/lib.kutrl.lst.php => src/LinksListing.php | 0 inc/lib.kutrl.log.php => src/Logs.php | 0 index.php => src/Manage.php | 0 _prepend.php => src/Prepend.php | 0 inc/lib.kutrl.srv.php => src/Service.php | 0 .../Service/ServiceBilbolinks.php | 0 .../class.bitly.service.php => src/Service/ServiceBitly.php | 0 .../class.custom.service.php => src/Service/ServiceCustom.php | 0 .../class.default.service.php => src/Service/ServiceDefault.php | 0 .../class.isgd.service.php => src/Service/ServiceIsgd.php | 0 .../class.local.service.php => src/Service/ServiceLocal.php | 0 .../class.yourls.service.php => src/Service/ServiceYourls.php | 0 .../class.googl.service.php => src/Services/ServiceGoogl.php | 0 .../class.shortto.service.php => src/Services/ServiceShortto.php | 0 .../class.supr.service.php => src/Services/ServiceSupr.php | 0 .../class.trim.service.php => src/Services/ServiceTrim.php | 0 _uninstall.php => src/Uninstall.php | 0 inc/class.kutrl.php => src/Utils.php | 0 _widgets.php => src/Widgets.php | 0 inc/lib.wiki.kutrl.php => src/Wiki.php | 0 25 files changed, 0 insertions(+), 0 deletions(-) rename inc/lib.kutrl.activityreport.php => src/ActivityReportActions.php (100%) rename _admin.php => src/Backend.php (100%) rename _config.php => src/Config.php (100%) rename _public.php => src/Frontend.php (100%) rename _install.php => src/Install.php (100%) rename inc/lib.kutrl.lst.php => src/LinksListing.php (100%) rename inc/lib.kutrl.log.php => src/Logs.php (100%) rename index.php => src/Manage.php (100%) rename _prepend.php => src/Prepend.php (100%) rename inc/lib.kutrl.srv.php => src/Service.php (100%) rename inc/services/class.bilbolinks.service.php => src/Service/ServiceBilbolinks.php (100%) rename inc/services/class.bitly.service.php => src/Service/ServiceBitly.php (100%) rename inc/services/class.custom.service.php => src/Service/ServiceCustom.php (100%) rename inc/services/class.default.service.php => src/Service/ServiceDefault.php (100%) rename inc/services/class.isgd.service.php => src/Service/ServiceIsgd.php (100%) rename inc/services/class.local.service.php => src/Service/ServiceLocal.php (100%) rename inc/services/class.yourls.service.php => src/Service/ServiceYourls.php (100%) rename inc/services/class.googl.service.php => src/Services/ServiceGoogl.php (100%) rename inc/services/class.shortto.service.php => src/Services/ServiceShortto.php (100%) rename inc/services/class.supr.service.php => src/Services/ServiceSupr.php (100%) rename inc/services/class.trim.service.php => src/Services/ServiceTrim.php (100%) rename _uninstall.php => src/Uninstall.php (100%) rename inc/class.kutrl.php => src/Utils.php (100%) rename _widgets.php => src/Widgets.php (100%) rename inc/lib.wiki.kutrl.php => src/Wiki.php (100%) diff --git a/inc/lib.kutrl.activityreport.php b/src/ActivityReportActions.php similarity index 100% rename from inc/lib.kutrl.activityreport.php rename to src/ActivityReportActions.php diff --git a/_admin.php b/src/Backend.php similarity index 100% rename from _admin.php rename to src/Backend.php diff --git a/_config.php b/src/Config.php similarity index 100% rename from _config.php rename to src/Config.php diff --git a/_public.php b/src/Frontend.php similarity index 100% rename from _public.php rename to src/Frontend.php diff --git a/_install.php b/src/Install.php similarity index 100% rename from _install.php rename to src/Install.php diff --git a/inc/lib.kutrl.lst.php b/src/LinksListing.php similarity index 100% rename from inc/lib.kutrl.lst.php rename to src/LinksListing.php diff --git a/inc/lib.kutrl.log.php b/src/Logs.php similarity index 100% rename from inc/lib.kutrl.log.php rename to src/Logs.php diff --git a/index.php b/src/Manage.php similarity index 100% rename from index.php rename to src/Manage.php diff --git a/_prepend.php b/src/Prepend.php similarity index 100% rename from _prepend.php rename to src/Prepend.php diff --git a/inc/lib.kutrl.srv.php b/src/Service.php similarity index 100% rename from inc/lib.kutrl.srv.php rename to src/Service.php diff --git a/inc/services/class.bilbolinks.service.php b/src/Service/ServiceBilbolinks.php similarity index 100% rename from inc/services/class.bilbolinks.service.php rename to src/Service/ServiceBilbolinks.php diff --git a/inc/services/class.bitly.service.php b/src/Service/ServiceBitly.php similarity index 100% rename from inc/services/class.bitly.service.php rename to src/Service/ServiceBitly.php diff --git a/inc/services/class.custom.service.php b/src/Service/ServiceCustom.php similarity index 100% rename from inc/services/class.custom.service.php rename to src/Service/ServiceCustom.php diff --git a/inc/services/class.default.service.php b/src/Service/ServiceDefault.php similarity index 100% rename from inc/services/class.default.service.php rename to src/Service/ServiceDefault.php diff --git a/inc/services/class.isgd.service.php b/src/Service/ServiceIsgd.php similarity index 100% rename from inc/services/class.isgd.service.php rename to src/Service/ServiceIsgd.php diff --git a/inc/services/class.local.service.php b/src/Service/ServiceLocal.php similarity index 100% rename from inc/services/class.local.service.php rename to src/Service/ServiceLocal.php diff --git a/inc/services/class.yourls.service.php b/src/Service/ServiceYourls.php similarity index 100% rename from inc/services/class.yourls.service.php rename to src/Service/ServiceYourls.php diff --git a/inc/services/class.googl.service.php b/src/Services/ServiceGoogl.php similarity index 100% rename from inc/services/class.googl.service.php rename to src/Services/ServiceGoogl.php diff --git a/inc/services/class.shortto.service.php b/src/Services/ServiceShortto.php similarity index 100% rename from inc/services/class.shortto.service.php rename to src/Services/ServiceShortto.php diff --git a/inc/services/class.supr.service.php b/src/Services/ServiceSupr.php similarity index 100% rename from inc/services/class.supr.service.php rename to src/Services/ServiceSupr.php diff --git a/inc/services/class.trim.service.php b/src/Services/ServiceTrim.php similarity index 100% rename from inc/services/class.trim.service.php rename to src/Services/ServiceTrim.php diff --git a/_uninstall.php b/src/Uninstall.php similarity index 100% rename from _uninstall.php rename to src/Uninstall.php diff --git a/inc/class.kutrl.php b/src/Utils.php similarity index 100% rename from inc/class.kutrl.php rename to src/Utils.php diff --git a/_widgets.php b/src/Widgets.php similarity index 100% rename from _widgets.php rename to src/Widgets.php diff --git a/inc/lib.wiki.kutrl.php b/src/Wiki.php similarity index 100% rename from inc/lib.wiki.kutrl.php rename to src/Wiki.php