summaryrefslogtreecommitdiff
path: root/modules/system/system.api.php
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2012-05-08 11:21:03 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2012-05-08 11:21:03 -0700
commitfffeb72bfd2802e8b5d4f0b514870d4b7fb23a29 (patch)
tree27189cc3ad7d2250d9eceb44122e0bf753cc2b89 /modules/system/system.api.php
parentb953e7e5a56980a8a0d718bd3ce0bd50e209a621 (diff)
downloadbrdo-fffeb72bfd2802e8b5d4f0b514870d4b7fb23a29.tar.gz
brdo-fffeb72bfd2802e8b5d4f0b514870d4b7fb23a29.tar.bz2
Issue #1513580 by matt2000: Update hook_init and hook_boot docs to say whether themes are loaded when they run
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r--modules/system/system.api.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index e28386997..c551e229b 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -1797,8 +1797,8 @@ function hook_forms($form_id, $args) {
* used to set up global parameters that are needed later in the request.
*
* Only use this hook if your code must run even for cached page views. This
- * hook is called before modules or most include files are loaded into memory.
- * It happens while Drupal is still in bootstrap mode.
+ * hook is called before the theme, modules, or most include files are loaded
+ * into memory. It happens while Drupal is still in bootstrap mode.
*
* @see hook_init()
*/
@@ -1813,7 +1813,8 @@ function hook_boot() {
*
* This hook is run at the beginning of the page request. It is typically
* used to set up global parameters that are needed later in the request.
- * When this hook is called, all modules are already loaded in memory.
+ * When this hook is called, the theme and all modules are already loaded in
+ * memory.
*
* This hook is not run on cached pages.
*