Allow hooks to be prefixed with HOOK_

This commit is contained in:
slawkens 2023-08-23 12:00:03 +02:00
parent f1670f4012
commit 063cbab93e

View File

@ -74,6 +74,10 @@ class Plugins {
if (isset($plugin['hooks'])) {
foreach ($plugin['hooks'] as $_name => $info) {
if (defined('HOOK_'. $info['type'])) {
if (str_contains($info['type'], 'HOOK_')) {
$info['type'] = str_replace('HOOK_', '', $info['type']);
}
$hook = constant('HOOK_'. $info['type']);
$hooks[] = ['name' => $_name, 'type' => $hook, 'file' => $info['file']];
} else {