You are here

function devel_debug_log_theme in Devel Debug Log 8

Same name and namespace in other branches
  1. 7 devel_debug_log.module \devel_debug_log_theme()

Implements hook_theme().

File

./devel_debug_log.module, line 73
Contains Drupal\devel_debug_log\devel_debug_log.module.

Code

function devel_debug_log_theme($existing, $type, $theme, $path) {
  return array(
    'devel_debug_log_list' => array(
      'variables' => array(
        'content' => NULL,
        'delete_form' => NULL,
      ),
    ),
  );
}