Chapter 8. The Theme System, Page 195
Mon, 02/02/2009 - 9:07am — davbre87
Location on the page:
Two-thirds down the page
Chapter:
8. The Theme System
Error:
/**
* Implementation of hook_theme().
*/
foo_theme() {
return array(
'breadcrumb' => array(
'arguments' => array('breadcrumb' => NULL),
),
);
}
Correction:
/**
* Implementation of hook_theme().
*/
function foo_theme() {
return array(
'breadcrumb' => array(
'arguments' => array('breadcrumb' => NULL),
),
);
}
Description of the Error:
'function' is missing from code snippet
