[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
jurnal-kesmas
/
lib
/
pkp
/
classes
/
observers
/
events
/
[
Home
]
File: PluginSettingChanged.php
<?php declare(strict_types=1); /** * @file classes/observers/events/PluginSettingChanged.php * * Copyright (c) 2014-2022 Simon Fraser University * Copyright (c) 2000-2022 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class PluginSettingChanged * * @ingroup observers_events * * @brief Event fired when a plugin's setting is changed, including whether * it is enabled or disabled. */ namespace PKP\observers\events; use Illuminate\Foundation\Events\Dispatchable; use PKP\plugins\Plugin; class PluginSettingChanged { use Dispatchable; public Plugin $plugin; public string $settingName; public mixed $newValue; public ?int $contextId; public function __construct( Plugin $plugin, string $settingName, $newValue, ?int $contextId = null ) { $this->plugin = $plugin; $this->settingName = $settingName; $this->newValue = $newValue; $this->contextId = $contextId; } }