Skip to content

Commit 80fdff9

Browse files
committed
Clarify precautions around hooks which dispatch on install/upgrade
1 parent 3152cdf commit 80fdff9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/apis/core/hooks/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,9 @@ Any guidelines for callback priority should be described in hook descriptions if
296296

297297
:::caution
298298

299-
Callbacks _are executed during system installation and all upgrades_, the callback
300-
methods must verify the plugin is in correct state. Often the easiest way is to
301-
use function during_initial_install() or version string from the plugin configuration.
299+
Hooks may be dispatched at any time, _including during system installation and upgrade_ (for example `before_http_headers`). Callback methods for such hooks must take extra care to ensure the plugin is properly initialised and that the database is available if database calls are made (as the database does not exist during site installation).
300+
301+
The `during_initial_install()` function can be used to check whether the the site is currently being installed, and `get_config('your_pluginname', 'version')` are two ways to conditionally make database queries or use API functions. `isset($CFG->upgraderunning)` can also be used to test if an upgrade is running. Failing to implement these checks may render the web install/upgrade page unusable.
302302

303303
:::
304304

0 commit comments

Comments
 (0)