Definition

hook_init()
files/contributions/docs/developer/hooks/core.php, line 867

Description

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.

Return value

None.

Related topics

Namesort iconDescription
HooksAllow modules to interact with the Drupal core.
HooksAllow modules to interact with the Drupal core.

Code

<?php
function hook_init() {
  drupal_add_css(drupal_get_path('module', 'book') .'/book.css');
}
?>