Jake Vanderwerf
2026-03-29 9f672be1f7bb5f8462374ca4732d095d4f24685b
base/_setup.php
@@ -8,7 +8,25 @@
require(JVB_DIR.'/base/login.php');
require(JVB_DIR.'/base/membership.php');
require(JVB_DIR.'/base/options.php');
require(JVB_DIR.'/base/seo.php');
$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');
}