function casetracker_dashboard_help in Case Tracker 5
Implementation of hook_help().
File
- ./
casetracker_dashboard.module, line 7
Code
function casetracker_dashboard_help($section) {
switch ($section) {
case 'casetracker/dashboard':
return '<p>' . t('Overview of number of cases for each project') . '</p>';
break;
case 'admin/content/casetracker/dashboard':
return '<p>' . t('Adminster dashboard') . '</p>';
break;
}
}