You are here

function ldap_help_watchdog in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_help/ldap_help.watchdog.inc \ldap_help_watchdog()
  2. 7 ldap_help/ldap_help.watchdog.inc \ldap_help_watchdog()
1 string reference to 'ldap_help_watchdog'
ldap_help_menu in ldap_help/ldap_help.module
Implements hook_menu().

File

ldap_help/ldap_help.watchdog.inc, line 11
The ldap_help watchdog is just a filtered watchdog summary.

Code

function ldap_help_watchdog() {
  $path = drupal_get_path("module", "ldap_help");
  $_content = "";
  if (module_exists('dblog')) {
    include_once drupal_get_path('module', 'dblog') . '/dblog.admin.inc';
    $_SESSION['dblog_overview_filter']['type'] = [
      'ldap' => 'ldap',
    ];
    $_content .= "<h3>" . t('LDAP Watchdog Errors and Notifications') . "</h3>";
    $overview = dblog_overview();
    $_content .= render($overview);
    $_content .= l(t('...more watchdog'), 'admin/reports/dblog');
  }
  else {
    $_content .= "<h3>" . t('LDAP Help Watchdog Errors and Notifications') . "</h3>";
    $_content .= 'This feature requires <code>Database logging</code> module to be turned on. ';
    $_content .= l(t('Module enable page'), 'admin/build/modules');
  }
  return $_content;
}