HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/refonte2023/wordpress/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');
        }
    }
}