function customerror_theme in Customerror 6
Same name and namespace in other branches
- 8 customerror.module \customerror_theme()
- 7 customerror.module \customerror_theme()
Implements hook_theme().
File
- ./
customerror.module, line 243 - Enables custom 404 (not found) and 403 (access denied) pages in Drupal.
Code
function customerror_theme() {
return array(
'customerror' => array(
'arguments' => array(
'code',
'content',
),
),
);
}