You are here

function macro_help in Macro 6

Same name and namespace in other branches
  1. 7 macro.module \macro_help()

Implementation of hook_help().

File

./macro.module, line 12
allow administrators to record (export) form submissions allow administrators to replay (import) form submissions

Code

function macro_help($section) {
  switch ($section) {
    case 'admin/help#macro':
      $output = t('Todo: Add help text.');
    case 'admin/build/macro/export':
      return t('This output can be saved to the profile`s .macro file, to be automatically played back upon completed install or used on an import on another site.');
    case 'admin/build/macro/import':
      return t('Insert recorded macro here to be played into your site. All referenced modules needs to be enabled.');
    case 'admin/build/macro':
      return t('Configuration settings for the drupal macro engine.');
  }
}