From 6256149fe16b0057ac9d7bdbd2703a3712f0d4c7 Mon Sep 17 00:00:00 2001 From: "Jokob @NetAlertX" <96159884+jokob-sk@users.noreply.github.com> Date: Sun, 21 Jun 2026 00:17:52 +0000 Subject: [PATCH] FE: add shared sub-tab skeleton template for plugins --- .../php/templates/skel_tab_plugins_table.php | 43 +++++++++++++++++++ front/pluginsCore.php | 17 +++++++- 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 front/php/templates/skel_tab_plugins_table.php diff --git a/front/php/templates/skel_tab_plugins_table.php b/front/php/templates/skel_tab_plugins_table.php new file mode 100644 index 00000000..1bd42c7f --- /dev/null +++ b/front/php/templates/skel_tab_plugins_table.php @@ -0,0 +1,43 @@ + +
+
+ + + +
+ +
+ + + +
+ +
+ diff --git a/front/pluginsCore.php b/front/pluginsCore.php index cb65134c..d4ba91d4 100755 --- a/front/pluginsCore.php +++ b/front/pluginsCore.php @@ -2,6 +2,9 @@ //------------------------------------------------------------------------------ // check if authenticated require_once $_SERVER['DOCUMENT_ROOT'] . '/php/templates/security.php'; + + // Capture shared sub-tab skeleton template for JS injection + ob_start(); require $_SERVER['DOCUMENT_ROOT'] . '/php/templates/skel_tab_plugins_table.php'; $skelPluginsTable = ob_get_clean(); ?> @@ -27,6 +30,9 @@