hook_init()
drupal/modules/system/system.api.php, line 302
Perform setup tasks. See also, hook_boot.
This hook is run at the beginning of the page request. It is typically used to set up global parameters which are needed later in the request. when this hook is called, all modules are already loaded in memory.
For example, this hook is a typical place for modules to add CSS or JS that should be present on every page. This hook is not run on cached pages - though CSS or JS added this way will be present on a cached page.
None.
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
function hook_init() {
drupal_add_css(drupal_get_path('module', 'book') . '/book.css');
}