function admin_audit_trail_help in Admin Audit Trail 1.0.x
Implements hook_help().
File
- ./
admin_audit_trail.module, line 16 - Track the logs of form submissions or other actions that performed by user.
Code
function admin_audit_trail_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.admin_audit_trail':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t("You can track logs of specific events that you'd like to log. The events by the user (using the forms) are saved in the database and can be viewed on the page admin/reports/events-track. You could use this to track number of times the CUD operation performed by which users. This module required by: Admin Audit Trail User Authentication, Admin Audit Trail Menu, Admin Audit Trail Node, Admin Audit Trail Taxonomy, Admin Audit Trail User.") . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Admin Audit Trail Menu') . '</dt>';
$output .= '<dd>' . t('Using this submodule you can logs menu CUD events performed by the user. This module requires: Admin Audit Trail.') . '</dd>';
$output .= '</dl>';
$output .= '<dl>';
$output .= '<dt>' . t('Admin Audit Trail Node') . '</dt>';
$output .= '<dd>' . t('Using this submodule you can logs node CUD events performed by the user. This module requires: Admin Audit Trail.') . '</dd>';
$output .= '</dl>';
$output .= '<dl>';
$output .= '<dt>' . t('Admin Audit Trail Taxonomy') . '</dt>';
$output .= '<dd>' . t('Using this submodule you can logs taxonomy vocabulary and term CUD events performed by the user. This module requires: Admin Audit Trail.') . '</dd>';
$output .= '</dl>';
$output .= '<dl>';
$output .= '<dt>' . t('Admin Audit Trail User') . '</dt>';
$output .= '<dd>' . t('Using this submodule you can logs user CUD events performed by the user. This module requires: Admin Audit Trail.') . '</dd>';
$output .= '</dl>';
$output .= '<dl>';
$output .= '<dt>' . t('Admin Audit Trail User Authentication') . '</dt>';
$output .= '<dd>' . t('Using this submodule you can logs user authentication (login logout and request password). This module requires: Admin Audit Trail.') . '</dd>';
$output .= '</dl>';
return $output;
}
}