1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 09:41:26 +02:00

Add a new extender interface for extension lifecycle hooks

This commit is contained in:
Franz Liedke
2018-09-26 22:46:44 +02:00
parent 2bf6a25230
commit 5704c37c18
4 changed files with 68 additions and 15 deletions

View File

@@ -11,15 +11,13 @@
namespace Flarum\Extend;
use Flarum\Extension\Event\Disabled;
use Flarum\Extension\Event\Enabled;
use Flarum\Extension\Extension;
use Flarum\Formatter\Event\Configuring;
use Flarum\Formatter\Formatter as ActualFormatter;
use Illuminate\Contracts\Container\Container;
use Illuminate\Events\Dispatcher;
class Formatter implements ExtenderInterface
class Formatter implements ExtenderInterface, LifecycleInterface
{
protected $callback;
@@ -40,16 +38,17 @@ class Formatter implements ExtenderInterface
call_user_func($this->callback, $event->configurator);
}
);
}
// Also set up an event listener to flush the formatter cache whenever
// this extension is enabled or disabled.
$events->listen(
[Enabled::class, Disabled::class],
function ($event) use ($container, $extension) {
if ($event->extension === $extension) {
$container->make(ActualFormatter::class)->flush();
}
}
);
public function onEnable(Container $container, Extension $extension)
{
// FLush the formatter cache when this extension is enabled
$container->make(ActualFormatter::class)->flush();
}
public function onDisable(Container $container, Extension $extension)
{
// FLush the formatter cache when this extension is disabled
$container->make(ActualFormatter::class)->flush();
}
}

View File

@@ -0,0 +1,22 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Extend;
use Flarum\Extension\Extension;
use Illuminate\Contracts\Container\Container;
interface LifecycleInterface
{
public function onEnable(Container $container, Extension $extension);
public function onDisable(Container $container, Extension $extension);
}