You are here

function msnf_help in Multistep Nodeform 6

Implementation of hook_help().

File

./msnf.module, line 11
Main functions for module "Multistep Nodeform".

Code

function msnf_help($path, $arg) {
  switch ($path) {
    case 'admin/help#msnf':
      $output = '<p>' . t('The "Multistep Nodeform" module allows administrators create single steps for node adding and editing and to associate fields with these steps. This includes default fields as "Title" or "Body", as well as custom fields defined by the @cck.', array(
        '@cck' => 'http://drupal.org/project/cck',
      )) . '</p>';
      return $output;
  }
}