/
/
home
/
melaqxso
/
public_html
/
wp-content
/
plugins
/
bookly-addon-pro
/
lib
Server: server63.web-hosting.com (198.54.116.184)
You: 216.73.216.220
PHP 7.4.33
Dir:
/home/melaqxso/public_html/wp-content/plugins/bookly-addon-pro/lib
Edit:
/home/melaqxso/public_html/wp-content/plugins/bookly-addon-pro/lib/Config.php
<?php namespace BooklyPro\Lib; use Bookly\Lib as BooklyLib; use Bookly\Lib\Base\Cache; use BooklyPro\Lib\Zoom\Authentication; abstract class Config extends Cache { /** @var int|bool */ protected static $grace_remaining_days; /** * Get Google Calendar synchronization mode (null means Google Calendar integration is not configured). * * @return string|null 1-way, 1.5-way, 2-way */ public static function getGoogleCalendarSyncMode() { if ( get_option( 'bookly_gc_client_id' ) == '' ) { return null; } return get_option( 'bookly_gc_sync_mode', '1.5-way' ); } /** * Check whether grace period is applicable and expired. * * @param bool $use_cache * @return bool */ public static function graceExpired( $use_cache = true ) { return self::graceRemainingDays( $use_cache ) === 0; } /** * Get number of days until grace end or false if grace period is not applicable. * * @param bool $use_cache * @return int|false */ public static function graceRemainingDays( $use_cache = true ) { return false; if ( ! $use_cache ) { self::$grace_remaining_days = null; } if ( self::$grace_remaining_days === null ) { // Length of grace period. $grace_period_days = 14; $today = (int) ( current_time( 'timestamp' ) / DAY_IN_SECONDS ); $api_error_day = (int) ( get_option( 'bookly_api_server_error_time' ) / DAY_IN_SECONDS ); if ( $api_error_day && $today - $api_error_day > 7 ) { self::$grace_remaining_days = max( 0, $api_error_day + $grace_period_days - $today ); } else { $addons = apply_filters( 'bookly_plugins', array() ); unset ( $addons[ BooklyLib\Plugin::getSlug() ] ); foreach ( $addons as $plugin_class ) { /** @var BooklyLib\Base\Plugin $plugin_class */ if ( $plugin_class::getPurchaseCode() == '' && ! $plugin_class::embedded() ) { $grace_start = (int) ( (int) get_option( $plugin_class::getPrefix() . 'grace_start' ) / DAY_IN_SECONDS ); if ( $today >= $grace_start ) { $remaining_days = max( 0, $grace_start + $grace_period_days - $today ); if ( self::$grace_remaining_days === null || $remaining_days < self::$grace_remaining_days ) { self::$grace_remaining_days = $remaining_days; } } } } if ( self::$grace_remaining_days === null ) { self::$grace_remaining_days = false; } } } return self::$grace_remaining_days; } /** * Get minimum time (in seconds) prior to booking. * * @param int|null $service_id * * @return integer */ public static function getMinimumTimePriorBooking( $service_id = null ) { $key = __FUNCTION__ . ( $service_id ?: '' ); if ( ! self::hasInCache( $key ) ) { $service = self::getServiceForTimePrior( $service_id ); self::putInCache( $key, $service && $service->getMinTimePriorBooking() !== null ? $service->getMinTimePriorBooking() : get_option( 'bookly_gen_min_time_prior_booking' ) * 3600 ); } return self::getFromCache( $key ); } /** * Get minimum time (in seconds) prior to cancel. * * @param int|null $service_id * * @return integer */ public static function getMinimumTimePriorCancel( $service_id = null ) { $service = self::getServiceForTimePrior( $service_id ); return $service && $service->getMinTimePriorCancel() !== null ? $service->getMinTimePriorCancel() : get_option( 'bookly_gen_min_time_prior_cancel' ) * 3600; } /** * Whether to show Facebook login button at the time step of booking form. * * @return bool */ public static function showFacebookLoginButton() { return (bool) get_option( 'bookly_app_show_facebook_login_button' ); } /** * Get Facebook app ID. * * @return string */ public static function getFacebookAppId() { return get_option( 'bookly_fb_app_id' ); } /** * Get Zoom authentication. * * @return string */ public static function zoomAuthentication() { return get_option( 'bookly_zoom_authentication', Authentication::TYPE_OAuth ); } /** * Get Zoom OAuth client id. * * @return string */ public static function zoomOAuthClientId() { return get_option( 'bookly_zoom_oauth_client_id' ); } /** * Get Zoom OAuth client Secret. * * @return string */ public static function zoomOAuthClientSecret() { return get_option( 'bookly_zoom_oauth_client_secret' ); } /** * Get Zoom OAuth token. * * @return string */ public static function zoomOAuthToken() { return get_option( 'bookly_zoom_oauth_token' ); } /** * Check if need create WooCommerce order * * @return bool */ public static function needCreateWCOrder( $total ) { return get_option( 'bookly_wc_enabled' ) && get_option( 'bookly_wc_create_order_via_backend' ) && get_option( 'bookly_wc_product' ) && ( get_option( 'bookly_wc_create_order_at_zero_cost' ) || $total > 0 ) && class_exists( 'WooCommerce', false ); } /** * Check if Gift Cards active * * @return bool */ public static function giftCardsActive() { return get_option( 'bookly_cloud_token' ) != '' && BooklyLib\Cloud\API::getInstance()->account->productActive( BooklyLib\Cloud\Account::PRODUCT_GIFT ); } /** * @param int|null $service_id * @return BooklyLib\Entities\Service|null */ private static function getServiceForTimePrior( $service_id ) { $service = BooklyLib\Entities\Service::find( $service_id ); if ( $service && ( $service->getType() === BooklyLib\Entities\Service::TYPE_PACKAGE ) ) { $sub_services = $service->getSubServices(); $service = isset( $sub_services[0] ) ? $sub_services[0] : null; } return $service; } }
Ukuran: 6.4 KB