HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/give/src/BetaFeatures/Repositories/FeatureFlagRepository.php
<?php

namespace Give\BetaFeatures\Repositories;

class FeatureFlagRepository
{
    /**
     * @since 3.6.0
     */
    public function eventTickets(): bool
    {
        if (defined('GIVE_FEATURE_ENABLE_EVENT_TICKETS')){
            return GIVE_FEATURE_ENABLE_EVENT_TICKETS === true;
        }

        return $this->enabled('event_tickets', false);
    }

    /**
     * In the future this will be dynamic, however right now we need a simple iteration of a notifications counter.
     *
     * @since 4.13.1 added filter givewp_feature_flag_notifications_count
     * @since 3.6.0
     */
    public function getNotificationCount(): int
    {
        $count = (int)get_option('givewp_feature_flag_notifications_count', 0);

        return apply_filters('givewp_feature_flag_notifications_count', $count);
    }

    /**
     * @since 3.6.0
     */
    public function resetNotificationCount(): void
    {
        update_option('givewp_feature_flag_notifications_count', 0);
    }

    /**
     * @since 3.6.0
     */
    public function enabled($feature, $default = false): bool
    {
        // Workaround so that the updated option is available at the start of the request.
        $option = isset($_POST["enable_$feature"])
            ? give_clean($_POST["enable_$feature"])
            : give_get_option("enable_$feature", $default);

        return give_is_setting_enabled($option);

    }
}