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/MultiFormGoals/ServiceProvider.php
<?php

namespace Give\MultiFormGoals;

use Give\Helpers\Hooks;
use Give\MultiFormGoals\MultiFormGoal\Block as MultiFormGoalBlock;
use Give\MultiFormGoals\MultiFormGoal\Shortcode as MultiFormGoalShortcode;
use Give\MultiFormGoals\ProgressBar\Block as ProgressBarBlock;
use Give\ServiceProviders\ServiceProvider as ServiceProviderInterface;

class ServiceProvider implements ServiceProviderInterface
{

    /**
     * @inheritDoc
     */
    public function register()
    {
        give()->singleton(MultiFormGoalShortcode::class);

        if (function_exists('register_block_type')) {
            give()->singleton(MultiFormGoalBlock::class);
            give()->singleton(ProgressBarBlock::class);
        }
    }

    /**
     * @inheritDoc
     */
    public function boot()
    {
        Hooks::addAction('init', MultiFormGoalShortcode::class, 'addShortcode');

        if (function_exists('register_block_type')) {
            Hooks::addAction('init', MultiFormGoalBlock::class, 'addBlock');
            Hooks::addAction('init', ProgressBarBlock::class, 'addBlock');
            Hooks::addAction('enqueue_block_editor_assets', ProgressBarBlock::class, 'localizeAssets');
        }
    }
}