mirror of
https://github.com/flarum/core.git
synced 2025-10-12 15:34:26 +02:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Extension;
|
|
|
|
use Flarum\Extension\Event\Disabling;
|
|
use Flarum\Foundation\AbstractServiceProvider;
|
|
use Illuminate\Contracts\Events\Dispatcher;
|
|
|
|
class ExtensionServiceProvider extends AbstractServiceProvider
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->container->singleton(ExtensionManager::class);
|
|
$this->container->alias(ExtensionManager::class, 'flarum.extensions');
|
|
|
|
// Boot extensions when the app is booting. This must be done as a boot
|
|
// listener on the app rather than in the service provider's boot method
|
|
// below, so that extensions have a chance to register things on the
|
|
// container before the core boots up (and starts resolving services).
|
|
$this->container['flarum']->booting(function () {
|
|
$this->container->make('flarum.extensions')->extend($this->container);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function boot(Dispatcher $events)
|
|
{
|
|
$events->listen(
|
|
Disabling::class,
|
|
DefaultLanguagePackGuard::class
|
|
);
|
|
}
|
|
}
|