function ldap_help_watchdog in Lightweight Directory Access Protocol (LDAP) 7
Same name and namespace in other branches
- 8.2 ldap_help/ldap_help.watchdog.inc \ldap_help_watchdog()
- 7.2 ldap_help/ldap_help.watchdog.inc \ldap_help_watchdog()
@file The ldap_help watchdog is just a filtered watchdog summary.
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 8 - The ldap_help watchdog is just a filtered watchdog summary.
Code
function ldap_help_watchdog() {
drupal_add_css(drupal_get_path('module', 'ldap_help') . '/ldap_help.css', 'module', 'all', FALSE);
$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'] = array(
'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;
}