function macro_help in Macro 7
Same name and namespace in other branches
- 6 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/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/macro/import':
return t('Insert recorded macro here to be played into your site. All referenced modules needs to be enabled.');
case 'admin/macro':
return t('Configuration settings for the drupal macro engine.');
}
}