You are here

function coder_review_theme in Coder 7.2

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

Implements hook_theme().

File

coder_review/coder_review.module, line 924
Developer module to assist with coder reviews and API upgrade suggestions.

Code

function coder_review_theme() {
  return array(
    'coder_review' => array(
      'variables' => array(
        'name' => NULL,
        'filename' => NULL,
        'results' => NULL,
      ),
    ),
    'coder_review_table_cols' => array(
      'render element' => 'form',
    ),
    'coder_review_modules_fieldset' => array(
      'render element' => 'form',
      'file' => 'coder_review.admin.inc',
    ),
  );
}