From 704debb394da4cafd2f2de7f430dc825249c0ed8 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Sun, 9 Apr 2023 10:15:27 +0200 Subject: [PATCH] move files (prepare namespace) --- js/{index.js => backend.js} | 0 _admin.php => src/Backend.php | 0 inc/class.adminepclist.php => src/BackendList.php | 0 inc/class.enhancepostcontent.php => src/Epc.php | 0 inc/class.epcfilter.php => src/EpcFilter.php | 0 inc/class.epcrecords.php => src/EpcRecord.php | 0 .../Filter/EpcFilterAbbreviation.php | 0 inc/class.epcfilteracronym.php => src/Filter/EpcFilterAcronym.php | 0 .../Filter/EpcFilterCitation.php | 0 .../Filter/EpcFilterDefinition.php | 0 inc/class.epcfilterlink.php => src/Filter/EpcFilterLink.php | 0 inc/class.epcfilterreplace.php => src/Filter/EpcFilterReplace.php | 0 inc/class.epcfiltersearch.php => src/Filter/EpcFilterSearch.php | 0 inc/class.epcfiltertag.php => src/Filter/EpcFilterTag.php | 0 inc/class.epcfiltertwitter.php => src/Filter/EpcFilterTwitter.php | 0 inc/class.epcfilterupdate.php => src/Filter/EpcFilterUpdate.php | 0 _public.php => src/Frontend.php | 0 _install.php => src/Install.php | 0 index.php => src/Manage.php | 0 _prepend.php => src/Prepend.php | 0 _uninstall.php => src/Uninstall.php | 0 _widgets.php => src/Widgets.php | 0 22 files changed, 0 insertions(+), 0 deletions(-) rename js/{index.js => backend.js} (100%) rename _admin.php => src/Backend.php (100%) rename inc/class.adminepclist.php => src/BackendList.php (100%) rename inc/class.enhancepostcontent.php => src/Epc.php (100%) rename inc/class.epcfilter.php => src/EpcFilter.php (100%) rename inc/class.epcrecords.php => src/EpcRecord.php (100%) rename inc/class.epcfilterabbreviation.php => src/Filter/EpcFilterAbbreviation.php (100%) rename inc/class.epcfilteracronym.php => src/Filter/EpcFilterAcronym.php (100%) rename inc/class.epcfiltercitation.php => src/Filter/EpcFilterCitation.php (100%) rename inc/class.epcfilterdefinition.php => src/Filter/EpcFilterDefinition.php (100%) rename inc/class.epcfilterlink.php => src/Filter/EpcFilterLink.php (100%) rename inc/class.epcfilterreplace.php => src/Filter/EpcFilterReplace.php (100%) rename inc/class.epcfiltersearch.php => src/Filter/EpcFilterSearch.php (100%) rename inc/class.epcfiltertag.php => src/Filter/EpcFilterTag.php (100%) rename inc/class.epcfiltertwitter.php => src/Filter/EpcFilterTwitter.php (100%) rename inc/class.epcfilterupdate.php => src/Filter/EpcFilterUpdate.php (100%) rename _public.php => src/Frontend.php (100%) rename _install.php => src/Install.php (100%) rename index.php => src/Manage.php (100%) rename _prepend.php => src/Prepend.php (100%) rename _uninstall.php => src/Uninstall.php (100%) rename _widgets.php => src/Widgets.php (100%) diff --git a/js/index.js b/js/backend.js similarity index 100% rename from js/index.js rename to js/backend.js diff --git a/_admin.php b/src/Backend.php similarity index 100% rename from _admin.php rename to src/Backend.php diff --git a/inc/class.adminepclist.php b/src/BackendList.php similarity index 100% rename from inc/class.adminepclist.php rename to src/BackendList.php diff --git a/inc/class.enhancepostcontent.php b/src/Epc.php similarity index 100% rename from inc/class.enhancepostcontent.php rename to src/Epc.php diff --git a/inc/class.epcfilter.php b/src/EpcFilter.php similarity index 100% rename from inc/class.epcfilter.php rename to src/EpcFilter.php diff --git a/inc/class.epcrecords.php b/src/EpcRecord.php similarity index 100% rename from inc/class.epcrecords.php rename to src/EpcRecord.php diff --git a/inc/class.epcfilterabbreviation.php b/src/Filter/EpcFilterAbbreviation.php similarity index 100% rename from inc/class.epcfilterabbreviation.php rename to src/Filter/EpcFilterAbbreviation.php diff --git a/inc/class.epcfilteracronym.php b/src/Filter/EpcFilterAcronym.php similarity index 100% rename from inc/class.epcfilteracronym.php rename to src/Filter/EpcFilterAcronym.php diff --git a/inc/class.epcfiltercitation.php b/src/Filter/EpcFilterCitation.php similarity index 100% rename from inc/class.epcfiltercitation.php rename to src/Filter/EpcFilterCitation.php diff --git a/inc/class.epcfilterdefinition.php b/src/Filter/EpcFilterDefinition.php similarity index 100% rename from inc/class.epcfilterdefinition.php rename to src/Filter/EpcFilterDefinition.php diff --git a/inc/class.epcfilterlink.php b/src/Filter/EpcFilterLink.php similarity index 100% rename from inc/class.epcfilterlink.php rename to src/Filter/EpcFilterLink.php diff --git a/inc/class.epcfilterreplace.php b/src/Filter/EpcFilterReplace.php similarity index 100% rename from inc/class.epcfilterreplace.php rename to src/Filter/EpcFilterReplace.php diff --git a/inc/class.epcfiltersearch.php b/src/Filter/EpcFilterSearch.php similarity index 100% rename from inc/class.epcfiltersearch.php rename to src/Filter/EpcFilterSearch.php diff --git a/inc/class.epcfiltertag.php b/src/Filter/EpcFilterTag.php similarity index 100% rename from inc/class.epcfiltertag.php rename to src/Filter/EpcFilterTag.php diff --git a/inc/class.epcfiltertwitter.php b/src/Filter/EpcFilterTwitter.php similarity index 100% rename from inc/class.epcfiltertwitter.php rename to src/Filter/EpcFilterTwitter.php diff --git a/inc/class.epcfilterupdate.php b/src/Filter/EpcFilterUpdate.php similarity index 100% rename from inc/class.epcfilterupdate.php rename to src/Filter/EpcFilterUpdate.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/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/_uninstall.php b/src/Uninstall.php similarity index 100% rename from _uninstall.php rename to src/Uninstall.php diff --git a/_widgets.php b/src/Widgets.php similarity index 100% rename from _widgets.php rename to src/Widgets.php