mysite_help

Definition

mysite_help($section)
mysite.module, line 31

Description

Implementation of hook_help().

Code

function mysite_help($section) {
  switch ($section) {
    case 'admin/help#mysite':
      include_once('mysite_help.inc');
      $output = mysite_helptext();
      return $output;
      break;
    case 'admin/settings/mysite':
      $output = t('<p>The MySite module gives users a customized view of site data,
        arranged in the order they prefer.  The behavior and presentation of the MySite
        module can be controlled through the following settings.  For detailed instructions,
        see the README.txt file in your MySite folder.</p>'
);
      return $output;
      break;
  }
}