dblog_filter.module in DBLog Filter 8
Same filename and directory in other branches
Contains dblog_filter.module..
File
dblog_filter.moduleView source
<?php
/**
* @file
* Contains dblog_filter.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function dblog_filter_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.dblog_filter':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows to Store particular DB log messages based on type and severity. Refer to README.txt in module folder.') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
dblog_filter_help | Implements hook_help(). |