29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-26 07:13:21 +00:00

Plugin instance on demand

This commit is contained in:
Fedik 2024-05-12 18:47:18 +03:00
parent d29cf4bdb5
commit 0704415db9

View File

@ -14,6 +14,7 @@ use Joomla\CMS\Extension\PluginInterface;
use Joomla\CMS\Factory;
use Joomla\Event\DispatcherAwareInterface;
use Joomla\Event\DispatcherInterface;
use Joomla\Event\Priority;
use Joomla\Event\SubscriberInterface;
// phpcs:disable PSR1.Files.SideEffects
@ -263,7 +264,7 @@ abstract class PluginHelper
$caller = \is_array($handler) ? [$instance, $handler[0]] : [$instance, $handler];
return $caller($event);
});
}, \is_array($handler) ? $params[1] ?? Priority::NORMAL : Priority::NORMAL);
}
}
} else {