* Calls enabled plugins on the specified hook and with the given args. * This method immediately returns as soon as a plugin explicitly returns false. The * returned value can be used, for instance, to interrupt the current action. * @param {string} hook - The name of the plugin method to call
(hook, args, filter)
| 1127 | * @returns {boolean} false if any of the plugins return false, else returns true. |
| 1128 | */ |
| 1129 | notifyPlugins(hook, args, filter) { |
| 1130 | return this._plugins.notify(this, hook, args, filter); |
| 1131 | } |
| 1132 | |
| 1133 | /** |
| 1134 | * Check if a plugin with the specific ID is registered and enabled |
no test coverage detected