File manager - Edit - /home/verseaumee/blueversion/wp-content/plugins/give/src/MultiFormGoals/ServiceProvider.php
Back
<?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'); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings