You are here

function customerror_theme in Customerror 6

Same name and namespace in other branches
  1. 8 customerror.module \customerror_theme()
  2. 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',
      ),
    ),
  );
}