From 88d9e0e2b7997eb0c96dc737082c91b4e3f7ca6e Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 17 Jun 2026 15:10:37 +0000
Subject: [PATCH] =Fixed for single image upload fields populating the image meta. Need to check galleries now.
---
checks.php | 45 ++++++---------------------------------------
1 files changed, 6 insertions(+), 39 deletions(-)
diff --git a/checks.php b/checks.php
index d92ef49..79cc829 100644
--- a/checks.php
+++ b/checks.php
@@ -1,5 +1,6 @@
<?php
+use JVBase\base\Options;
use JVBase\base\Site;
use JVBase\managers\Cache;
use JVBase\registrar\Registrar;
@@ -12,59 +13,25 @@
return (array_key_exists($key, $config) && $config[$key] === true);
}
-function jvbUserIsVerified():bool
-{
- $membership = Site::membership();
-
- return !($membership && $membership->has('member_verified')) || current_user_can('skip_moderation');
-}
-
function jvbUserTypes():array
{
- $types = get_option(BASE.'user_types');
- if (JVB_TESTING) {
- $types = false;
- }
- if ($types === false) {
- $types = [];
- foreach (JVB_USER as $type => $config) {
- if (array_key_exists('profile', $config)) {
- $types[$type] = BASE.$config['profile'];
- }
- }
- update_option(BASE.'user_types', $types);
- }
- return $types;
+ return Registrar::withFeature('profile_link', 'user');
}
-function isJVBContentTax():bool
-{
- return is_tax(array_map(function ($tax) {
- return jvbCheckBase($tax);
- }, Registrar::getFeatured('is_content', 'term')));
-}
-function taxIsJVBContentTax($tax):bool
-{
- $allowed = Registrar::getFeatured('is_content', 'term');
- $tax = jvbNoBase($tax);
- return in_array($tax, $allowed);
-}
function jvbIsOpen():bool
{
-
- if (!jvbCheck('limit_hours', JVB_SITE)) {
+ if (!Site::has('limit_hours')) {
return true;
}
- if (get_option(BASE.'open_to_public') !== '1') {
+ if (Options::get('open_to_public') !== 1) {
+ error_log('Not open to public');
return false;
}
- //Check if today_hours is set
- if (get_option(BASE.'today_hours')) {
+ if (Options::get('today_hours')) {
return jvbIsTimeBetween();
}
- //Default to the stored settings
return jvbIsCurrentlyOpen();
}
--
Gitblit v1.10.0