You are here

function log_admin_paths in Log entity 7

Implements hook_admin_paths().

File

./log.module, line 163
Log - A general purpose record keeping system.

Code

function log_admin_paths() {

  // Display log paths with the admin theme, if specified.
  $paths = array();
  if (variable_get('log_admin_theme', TRUE)) {
    $paths = array(
      'log/*' => TRUE,
    );
  }
  return $paths;
}