function customerror_theme in Customerror 7
Same name and namespace in other branches
- 8 customerror.module \customerror_theme()
- 6 customerror.module \customerror_theme()
Implements hook_theme().
2 string references to 'customerror_theme'
- customerror_admin_settings in ./
customerror.module - Displays the module settings form.
- customerror_custom_theme in ./
customerror.module - Implements hook_custom_theme().
File
- ./
customerror.module, line 267 - Enables custom 404 (not found) and 403 (access denied) pages in Drupal.
Code
function customerror_theme() {
return array(
'customerror' => array(
'variables' => array(
'code' => NULL,
'content' => NULL,
),
),
);
}