/[drupal]/contributions/modules/autopilot/autopilot_help.inc
ViewVC logotype

Contents of /contributions/modules/autopilot/autopilot_help.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Thu Oct 9 21:35:48 2008 UTC (13 months, 2 weeks ago) by souvent22
Branch: MAIN
CVS Tags: DRUPAL-5--2-0-BETA4, DRUPAL-5--2-0-BETA3, DRUPAL-5--1-4, DRUPAL-5--1-3, HEAD
Changes since 1.1: +0 -2 lines
File MIME type: text/x-php
Patching WSOD issue.
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 }

  ViewVC Help
Powered by ViewVC 1.1.2