54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Events;
|
|
use App\Listeners;
|
|
use Event;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [
|
|
'App\Events\PlayerRetrieved' => [
|
|
'App\Listeners\ResetInvalidTextureForPlayer',
|
|
],
|
|
'App\Events\TextureDeleting' => [
|
|
'App\Listeners\TextureRemoved',
|
|
],
|
|
'App\Events\PluginWasEnabled' => [
|
|
'App\Listeners\CopyPluginAssets',
|
|
'App\Listeners\GeneratePluginTranslations',
|
|
],
|
|
'plugin.versionChanged' => [
|
|
'App\Listeners\CopyPluginAssets',
|
|
'App\Listeners\GeneratePluginTranslations',
|
|
],
|
|
'App\Events\PluginBootFailed' => [
|
|
'App\Listeners\NotifyFailedPlugin',
|
|
],
|
|
'App\Events\RenderingHeader' => [
|
|
'App\Listeners\SerializeGlobals',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* Register any other events for your application.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
if (option('enable_notfound_cache')) {
|
|
Event::subscribe(Listeners\CachePlayerExists::class);
|
|
}
|
|
}
|
|
}
|