You are here

function devel_theme in Devel 6

Same name and namespace in other branches
  1. 7 devel.module \devel_theme()

Implementation of hook_theme()

File

./devel.module, line 251

Code

function devel_theme() {

  // &$cache, $type, $theme, $path
  return array(
    'devel_variable_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'devel_querylog' => array(
      'arguments' => array(
        'header' => array(),
        'rows' => array(),
      ),
    ),
    'devel_querylog_row' => array(
      'arguments' => array(
        'row' => array(),
      ),
    ),
  );
}