You are here

function coder_theme in Coder 6

Same name and namespace in other branches
  1. 6.2 coder.module \coder_theme()

Implementation of hook_theme().

File

./coder.module, line 1694
Developer Module that assists with code review and version upgrade that supports a plug-in extensible hook system so contributed modules can define additional review standards.

Code

function coder_theme() {
  return array(
    'coder' => array(
      'arguments' => array(
        'name',
        'filename',
        'results',
      ),
    ),
    'coder_warning' => array(
      'arguments' => array(
        'warning',
        'severity_name',
        'lineno',
        'line',
      ),
    ),
    'coder_warning_msg' => array(
      'arguments' => array(
        'error',
      ),
    ),
    'cols' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'drupalapi' => array(
      'arguments' => array(
        'function',
        'version',
      ),
    ),
  );
}