You are here

function feed_import_help in Feed Import 7.2

Same name and namespace in other branches
  1. 8 feed_import.module \feed_import_help()
  2. 7.3 feed_import.module \feed_import_help()
  3. 7 feed_import.module \feed_import_help()

Implements hook_help().

File

./feed_import.module, line 15
User interface, cron functions for feed_import module

Code

function feed_import_help($path, $arg) {
  if ($path == 'admin/help#feed_import') {
    $vars = array(
      '!file' => l('README.txt', drupal_get_path('module', 'feed_import') . '/README.txt'),
      '!project_page' => l('Feed Import', 'http://drupal.org/project/feed_import'),
    );
    $help = t('Import content into entities from various file types (XML, HTML, CSV, ...) using XPATH.');
    $help .= '<br />';
    $help .= t('For more info please read !file file or go to !project_page.', $vars);
    return $help;
  }
}