You are here

function devel_theme in Devel 7

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

Implements hook_theme().

File

./devel.module, line 415
This module holds functions useful for Drupal development.

Code

function devel_theme() {
  return array(
    'devel_querylog' => array(
      'variables' => array(
        'header' => array(),
        'rows' => array(),
      ),
    ),
    'devel_querylog_row' => array(
      'variables' => array(
        'row' => array(),
      ),
    ),
  );
}