mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
This reverts commit 3117d2ad7a
.
This commit is contained in:
parent
fa0ff204dd
commit
1321b8cc28
|
@ -9,6 +9,8 @@
|
|||
|
||||
namespace Flarum\Admin;
|
||||
|
||||
use Flarum\Extension\Event\Disabled;
|
||||
use Flarum\Extension\Event\Enabled;
|
||||
use Flarum\Foundation\AbstractServiceProvider;
|
||||
use Flarum\Foundation\ErrorHandling\Registry;
|
||||
use Flarum\Foundation\ErrorHandling\Reporter;
|
||||
|
@ -116,7 +118,7 @@ class AdminServiceProvider extends AbstractServiceProvider
|
|||
$events = $this->app->make('events');
|
||||
|
||||
$events->listen(
|
||||
ClearingCache::class,
|
||||
[Enabled::class, Disabled::class, ClearingCache::class],
|
||||
function () {
|
||||
$recompile = new RecompileFrontendAssets(
|
||||
$this->app->make('flarum.assets.admin'),
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
namespace Flarum\Extend;
|
||||
|
||||
use Flarum\Extension\Event\Disabled;
|
||||
use Flarum\Extension\Event\Enabled;
|
||||
use Flarum\Extension\Extension;
|
||||
use Flarum\Foundation\Event\ClearingCache;
|
||||
use Flarum\Frontend\Assets;
|
||||
|
@ -21,7 +23,7 @@ use Flarum\Locale\LocaleManager;
|
|||
use Flarum\Settings\Event\Saved;
|
||||
use Illuminate\Contracts\Container\Container;
|
||||
|
||||
class Frontend implements ExtenderInterface, LifecycleInterface
|
||||
class Frontend implements ExtenderInterface
|
||||
{
|
||||
private $frontend;
|
||||
|
||||
|
@ -113,9 +115,13 @@ class Frontend implements ExtenderInterface, LifecycleInterface
|
|||
$events = $container->make('events');
|
||||
|
||||
$events->listen(
|
||||
ClearingCache::class,
|
||||
function () use ($container) {
|
||||
$this->recompile($container);
|
||||
[Enabled::class, Disabled::class, ClearingCache::class],
|
||||
function () use ($container, $abstract) {
|
||||
$recompile = new RecompileFrontendAssets(
|
||||
$container->make($abstract),
|
||||
$container->make(LocaleManager::class)
|
||||
);
|
||||
$recompile->flush();
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -179,27 +185,4 @@ class Frontend implements ExtenderInterface, LifecycleInterface
|
|||
{
|
||||
return $extension ? $extension->getId() : 'site-custom';
|
||||
}
|
||||
|
||||
public function onEnable(Container $container, Extension $extension)
|
||||
{
|
||||
if (! empty($this->js) || ! empty($this->css)) {
|
||||
$this->recompile($container);
|
||||
}
|
||||
}
|
||||
|
||||
public function onDisable(Container $container, Extension $extension)
|
||||
{
|
||||
if (! empty($this->js) || ! empty($this->css)) {
|
||||
$this->recompile($container);
|
||||
}
|
||||
}
|
||||
|
||||
private function recompile($container)
|
||||
{
|
||||
$recompile = new RecompileFrontendAssets(
|
||||
$container->make('flarum.assets.'.$this->frontend),
|
||||
$container->make(LocaleManager::class)
|
||||
);
|
||||
$recompile->flush();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
namespace Flarum\Forum;
|
||||
|
||||
use Flarum\Extension\Event\Disabled;
|
||||
use Flarum\Extension\Event\Enabled;
|
||||
use Flarum\Formatter\Formatter;
|
||||
use Flarum\Foundation\AbstractServiceProvider;
|
||||
use Flarum\Foundation\ErrorHandling\Registry;
|
||||
|
@ -132,7 +134,7 @@ class ForumServiceProvider extends AbstractServiceProvider
|
|||
$events = $this->app->make('events');
|
||||
|
||||
$events->listen(
|
||||
ClearingCache::class,
|
||||
[Enabled::class, Disabled::class, ClearingCache::class],
|
||||
function () {
|
||||
$recompile = new RecompileFrontendAssets(
|
||||
$this->app->make('flarum.assets.forum'),
|
||||
|
|
Loading…
Reference in New Issue
Block a user