| 1 |
<?php
|
| 2 |
// $Id: help.module,v 1.90 2009/08/24 00:14:20 webchick Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Manages displaying online help.
|
| 7 |
*/
|
| 8 |
|
| 9 |
/**
|
| 10 |
* Implement hook_menu().
|
| 11 |
*/
|
| 12 |
function help_menu() {
|
| 13 |
$items['admin/help'] = array(
|
| 14 |
'title' => 'Help',
|
| 15 |
'page callback' => 'help_main',
|
| 16 |
'access arguments' => array('access administration pages'),
|
| 17 |
'weight' => 9,
|
| 18 |
'file' => 'help.admin.inc',
|
| 19 |
);
|
| 20 |
|
| 21 |
foreach (module_implements('help', TRUE) as $module) {
|
| 22 |
$items['admin/help/' . $module] = array(
|
| 23 |
'title' => $module,
|
| 24 |
'page callback' => 'help_page',
|
| 25 |
'page arguments' => array(2),
|
| 26 |
'access arguments' => array('access administration pages'),
|
| 27 |
'type' => MENU_CALLBACK,
|
| 28 |
'file' => 'help.admin.inc',
|
| 29 |
);
|
| 30 |
}
|
| 31 |
|
| 32 |
return $items;
|
| 33 |
}
|
| 34 |
|
| 35 |
/**
|
| 36 |
* Implement hook_help().
|
| 37 |
*/
|
| 38 |
function help_help($path, $arg) {
|
| 39 |
switch ($path) {
|
| 40 |
case 'admin/help':
|
| 41 |
$output = '<p>' . t('Please follow these steps to set up and start using your website:') . '</p>';
|
| 42 |
$output .= '<ol>';
|
| 43 |
$output .= '<li>' . t('<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/config'))) . '</li>';
|
| 44 |
$output .= '<li>' . t('<strong>Enable additional functionality</strong> Next, visit the <a href="@modules">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href="@download_modules">Drupal modules download section</a>.', array('@modules' => url('admin/config/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '</li>';
|
| 45 |
$output .= '<li>' . t('<strong>Customize your website design</strong> To change the "look and feel" of your website, visit the <a href="@themes">themes section</a>. You may choose from one of the included themes or download additional themes from the <a href="@download_themes">Drupal themes download section</a>.', array('@themes' => url('admin/appearance'), '@download_themes' => 'http://drupal.org/project/themes')) . '</li>';
|
| 46 |
$output .= '<li>' . t('<strong>Start posting content</strong> Finally, you can <a href="@content">add new content</a> for your website.', array('@content' => url('node/add'))) . '</li>';
|
| 47 |
$output .= '</ol>';
|
| 48 |
$output .= '<p>' . t('For more information, please refer to the specific topics listed in the next section, or the <a href="@handbook">online Drupal handbooks</a>. You may also post at the <a href="@forum">Drupal forum</a>, or view the wide range of <a href="@support">other support options</a> available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '</p>';
|
| 49 |
return $output;
|
| 50 |
case 'admin/help#help':
|
| 51 |
$output = '<p>' . t('The help module provides context sensitive help on the use and configuration of <a href="@drupal">Drupal</a> and its modules, and is a supplement to the more extensive online <a href="@handbook">Drupal handbook</a>. The online handbook may contain more up-to-date information, is annotated with helpful user-contributed comments, and serves as the definitive reference point for all Drupal documentation.', array('@drupal' => 'http://drupal.org', '@handbook' => 'http://drupal.org/handbook')) . '</p>';
|
| 52 |
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@help">Help module</a>.', array('@help' => 'http://drupal.org/handbook/modules/help/')) . '</p>';
|
| 53 |
return $output;
|
| 54 |
}
|
| 55 |
}
|