You are here

function feedapi_help in FeedAPI 5

Same name and namespace in other branches
  1. 6 feedapi.module \feedapi_help()

Implementation of hook_help().

File

./feedapi.module, line 21
Handle the submodules (for feed and item processing) Provide a basic management of feeds

Code

function feedapi_help($section) {
  switch ($section) {
    case 'admin/help#feedapi':
      $output = '<p>' . t('Provides feed management interface and handles underlying processors and parsers for any type of feeds.') . '</p>';
      $output .= '<p>' . t('Feeds are based on content types. Default content types are created on install. You can create new content types on the <a href="@content-types">add content types</a> page. To do that, enable the "Is a feed content type" checkbox under the Feed API group on the content type edit form. Then choose the processors and parsers that you would like to use. At least one parser and one processor must be enabled.', array(
        '@content-types' => url('admin/content/types/add'),
      )) . '</p>';
      return $output;
    case 'admin/content/feed':
      return '<p>' . t('Current feeds are listed below. For each FeedAPI-enabled content type, the <em>Quick create</em> block may be enabled at the <a href="@block">blocks administration page</a>.', array(
        '@block' => url('admin/build/block'),
      )) . '</p>';
    case 'admin/content/feed/import_opml':
      return '<p>' . t('Feeds can be imported from a valid OPML file. You can check your OPML file at <a href="@validator">OPML Validator</a>.', array(
        '@validator' => url('http://validator.opml.org/'),
      )) . '</p>';
    case 'admin/settings/feedapi':
      return '<p>' . t('You can find more configuration options on the content type edit form of FeedAPI-enabled <a href="@content-types">content types</a>.', array(
        '@content-types' => url('admin/content/types'),
      )) . '</p>';
  }
}