mirror of
https://github.com/flarum/framework.git
synced 2025-02-28 08:57:56 +08:00
Add BootForum event so extensions can add assets
This commit is contained in:
parent
334bb596c2
commit
8430b67d5b
11
framework/core/src/Forum/Events/BootForum.php
Normal file
11
framework/core/src/Forum/Events/BootForum.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php namespace Flarum\Forum\Events;
|
||||
|
||||
class BootForum
|
||||
{
|
||||
public $app;
|
||||
|
||||
public function __construct($app)
|
||||
{
|
||||
$this->app = $app;
|
||||
}
|
||||
}
|
@ -2,6 +2,7 @@
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Flarum\Support\AssetManager;
|
||||
use Flarum\Forum\Events\BootForum;
|
||||
|
||||
class ForumServiceProvider extends ServiceProvider
|
||||
{
|
||||
@ -23,6 +24,8 @@ class ForumServiceProvider extends ServiceProvider
|
||||
$root.'/less/forum/app.less'
|
||||
]);
|
||||
|
||||
event(new BootForum($this->app));
|
||||
|
||||
$this->publishes([
|
||||
$root.'/public/fonts' => public_path('flarum/fonts')
|
||||
]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user