From 474109a5df0a06f5343ab184838fe2d80e3872a8 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 11 Jan 2026 19:23:20 +0000
Subject: [PATCH] =Fixed timeline CRUD.js issue where this.activeItem was set null when we still needed it
---
base/_setup.php | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/base/_setup.php b/base/_setup.php
index 9855a72..9e46047 100644
--- a/base/_setup.php
+++ b/base/_setup.php
@@ -12,3 +12,20 @@
$base = apply_filters('jvb_base', 'jvb_');
$base = (str_ends_with($base, '_')) ? $base : $base.'_';
define('BASE', $base);
+
+$childPath = apply_filters('jvbChildDir', JVB_DIR);
+define('JVB_CHILD_DIR', $childPath);
+
+$childURL = apply_filters('jvbChildUrl', JVB_URL);
+define('JVB_CHILD_URL', $childURL);
+
+
+function jvbDefaultIcon():string
+{
+ return apply_filters('jvbDefaultIcon', 'arrows-clockwise');
+}
+
+function jvbLogoIcon():string
+{
+ return apply_filters('jvbLogoIcon', 'logo');
+}
--
Gitblit v1.10.0