| 1 |
<?php
|
| 2 |
|
| 3 |
function _autopilot_help($section) {
|
| 4 |
$help = "";
|
| 5 |
switch($section) {
|
| 6 |
case 'admin/help#autopilot':
|
| 7 |
$help = '<p>' . t('Autopilot is a change management tool written by Workhabit Inc.') . '</p>';
|
| 8 |
break;
|
| 9 |
case 'autopilot':
|
| 10 |
$help = '<p>' . t('This is your main dashboard. For more information click here') . '</p>';
|
| 11 |
break;
|
| 12 |
# Target Help
|
| 13 |
case 'autopilot/setup/targets':
|
| 14 |
$help = '<p>' . t('If you do not see any targets listed, you must create some targets.
|
| 15 |
If the %add_option is not availiable to you, then you must contact
|
| 16 |
your administrator to create some targets for you.',
|
| 17 |
array('%add_option' => t('Add Target'))
|
| 18 |
)
|
| 19 |
. '</p>';
|
| 20 |
break;
|
| 21 |
}
|
| 22 |
return $help;
|
| 23 |
}
|
| 24 |
|
| 25 |
function _autopilot_help_dashboard() {
|
| 26 |
$page = "";
|
| 27 |
return $page;
|
| 28 |
}
|