Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / lib / Drupal / Core / Extension / module.api.php
index 17627523644dda193c5ee4af4174ac74a8a0de1d..45355cc3f6a2aa6df8eecee8a81c59944a8779b1 100644 (file)
@@ -676,9 +676,10 @@ function hook_update_N(&$sandbox) {
  * These updates are executed after all hook_update_N() implementations. At this
  * stage Drupal is already fully repaired so you can use any API as you wish.
  *
- * NAME can be arbitrary machine names. In contrast to hook_update_N() the order
- * of functions in the file is the only thing which ensures the execution order
- * of those functions.
+ * NAME can be arbitrary machine names. In contrast to hook_update_N() the
+ * alphanumeric naming of functions in the file is the only thing which ensures
+ * the execution order of those functions. If update order is mandatory,
+ * you should add numerical prefix to NAME or make it completely numerical.
  *
  * Drupal also ensures to not execute the same hook_post_update_NAME() function
  * twice.