You are here

function feeds_ui_help in Feeds 7.2

Same name and namespace in other branches
  1. 8.2 feeds_ui/feeds_ui.module \feeds_ui_help()
  2. 6 feeds_ui/feeds_ui.module \feeds_ui_help()
  3. 7 feeds_ui/feeds_ui.module \feeds_ui_help()

Implements hook_help().

File

feeds_ui/feeds_ui.module, line 10

Code

function feeds_ui_help($path, $arg) {
  switch ($path) {
    case 'admin/structure/feeds':
      $output = '<p>' . t('Create one or more Feed importers for pulling content into Drupal. You can use these importers from the <a href="@import">Import</a> page or - if you attach them to a content type - simply by creating a node from that content type.', array(
        '@import' => url('import'),
      )) . '</p>';
      return $output;
  }
}