1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-19 16:11:21 +02:00

[ticket/17457] Add more variables to manifest core event

PHPBB-17457
This commit is contained in:
Matt Friedman
2024-12-20 20:19:17 -08:00
parent b6b0973e9e
commit a707fe30dd

View File

@@ -80,10 +80,12 @@ class manifest
* *
* @event core.modify_manifest * @event core.modify_manifest
* @var array manifest Array of manifest members * @var array manifest Array of manifest members
* @var string board_path Path to the board root * @var string board_url Url to the board root
* @var string sitename Full name of the board
* @var string sitename_short Shortened name of the board
* @since 4.0.0-a1 * @since 4.0.0-a1
*/ */
$vars = array('manifest', 'board_path'); $vars = ['manifest', 'board_url', 'sitename', 'sitename_short'];
extract($this->phpbb_dispatcher->trigger_event('core.modify_manifest', compact($vars))); extract($this->phpbb_dispatcher->trigger_event('core.modify_manifest', compact($vars)));
$response = new JsonResponse($manifest); $response = new JsonResponse($manifest);