Same name and namespace in other branches
  1. 4.7.x modules/blogapi.module \blogapi_help()
  2. 5.x modules/blogapi/blogapi.module \blogapi_help()
  3. 6.x modules/blogapi/blogapi.module \blogapi_help()

Implementation of hook_help().

File

modules/blogapi.module, line 11
Enable users to post using applications that support XML-RPC blog APIs.

Code

function blogapi_help($section) {
  switch ($section) {
    case 'admin/help#blogapi':
      return t('<p>This module adds support for several XML-RPC based blogging APIs. Specifically, it currently implements the %bloggerAPI, %metaweblogAPI, and most of the %moveabletype extensions.  This allows users to contribute to Drupal using external GUI applications, which can often offer richer functionality that online forms based editing.</p><p>This module also allows site administrators to configure which node types can be posted via the external applications. So, for instance, users can post forum topics as well as blog posts. Where supported, the external applications will display each node type as a separate "blog".</p>', array(
        '%bloggerAPI' => '<a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a>',
        '%metaweblogAPI' => '<a href="http://www.xmlrpc.com/metaWeblogApi">MetaWeblog API</a>',
        '%moveabletype' => '<a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">Movable Type API</a>. ',
      ));
    case 'admin/modules#description':
      return t('Allows users to post content using applications that support XML-RPC blog APIs.');
  }
}