You are here

function minisite_help in Mini site 7

Same name and namespace in other branches
  1. 8 minisite.module \minisite_help()

Implements hook_help().

File

./minisite.module, line 23
Module file.

Code

function minisite_help($path, $arg) {
  switch ($path) {
    case 'admin/help#minisite':
      $output = '<p>' . t("Provides the ability to upload arbitrary 'minisites' to a Drupal website.") . '</p>';
      return $output;
  }
}