You are here

function prod_check_theme in Production check & Production monitor 6

Same name and namespace in other branches
  1. 8 prod_check.module \prod_check_theme()
  2. 7 prod_check.module \prod_check_theme()

Implementation of hook_theme()

File

./prod_check.module, line 147

Code

function prod_check_theme() {
  $defaults = array(
    'path' => drupal_get_path('module', 'prod_check') . '/includes',
    'file' => 'prod_check.theme.inc',
  );
  return array(
    'prod_check_status_report' => array(
      'arguments' => array(
        'requirements' => NULL,
      ),
    ) + $defaults,
    'prod_check_dbstatus' => array(
      'arguments' => array(
        'title' => NULL,
        'status' => NULL,
        'details' => NULL,
      ),
    ) + $defaults,
  );
}