Jake Vanderwerf
2026-04-15 c4aa5cdb5e90ad4b420e22772797d16980232a2b
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');
}