You are here

function coder_review_theme in Coder 7

Same name and namespace in other branches
  1. 7.2 coder_review/coder_review.module \coder_review_theme()

Implements hook_theme().

File

coder_review/coder_review.module, line 2009

Code

function coder_review_theme() {
  return array(
    'coder_review' => array(
      'variables' => array(
        'name' => NULL,
        'filename' => NULL,
        'results' => NULL,
      ),
    ),
    'coder_review_warning' => array(
      'variables' => array(
        'warning' => NULL,
        'severity_name' => NULL,
        'lineno' => NULL,
        'line' => NULL,
      ),
    ),
    'coder_review_warning_msg' => array(
      'variables' => array(
        'error' => NULL,
      ),
    ),
    'coder_review_table_cols' => array(
      'render element' => 'form',
    ),
    'drupalapi' => array(
      'variables' => array(
        'function' => NULL,
        'version' => drupal_substr(VERSION, 0, 1),
      ),
    ),
    'phpapi' => array(
      'variables' => array(
        'function' => NULL,
      ),
    ),
  );
}