You are here

function feed_import_base_help in Feed Import 7.3

Same name and namespace in other branches
  1. 8 feed_import_base/feed_import_base.module \feed_import_base_help()

Implements hook_help().

File

feed_import_base/feed_import_base.module, line 10
Basic settings for feed import base module

Code

function feed_import_base_help($path, $arg) {
  if ($path == 'admin/help#feed_import_base') {
    $vars = array(
      '!project_page' => l('Feed Import', 'http://drupal.org/project/feed_import'),
    );
    $help = t('The basic functionality used to import content into entities.');
    $help .= '<br />';
    $help .= t('For more info please read README.txt or go to !project_page.', $vars);
    return $help;
  }
}