diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-06 18:11:41 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-06 18:11:41 +0000 |
commit | 7d4f8c7ac6f596324dd8f35791df33aa3d9c532b (patch) | |
tree | e30383eb0288925def1cc11f6ea53aea25cb7dbe /modules/rdf | |
parent | 89ac9876d08935ab9e644dac2e051925197e4e43 (diff) | |
download | brdo-7d4f8c7ac6f596324dd8f35791df33aa3d9c532b.tar.gz brdo-7d4f8c7ac6f596324dd8f35791df33aa3d9c532b.tar.bz2 |
#635282 by jhodgdon and arianek: Update RDF, DBlog, and PHP module to new help standard.
Diffstat (limited to 'modules/rdf')
-rw-r--r-- | modules/rdf/rdf.module | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/rdf/rdf.module b/modules/rdf/rdf.module index 1ca95f6b6..fcde0effe 100644 --- a/modules/rdf/rdf.module +++ b/modules/rdf/rdf.module @@ -7,6 +7,19 @@ */ /** + * Implement hook_help(). + */ +function rdf_help($path, $arg) { + switch ($path) { + case 'admin/help#rdf': + $output = ''; + $output .= '<h3>' . t('About') . '</h3>'; + $output .= '<p>' . t('The RDF module enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes. This semantically enriched, machine-readable RDF output for Drupal sites uses the <a href="@rdfa">RDFa specification</a>. Other modules can define mappings of their data to RDFa properties, and the RDF module makes the data available to the theme. The core Drupal modules define RDF mappings for their information, and the core Drupal themes output the RDF meta-data information along with the human-readable visual information. For more information, see the online handbook entry for <a href="@rdf">RDF module</a>.', array('@rdfa' => 'http://www.w3.org/TR/xhtml-rdfa-primer/', '@rdf' => 'http://drupal.org/handbook/modules/rdf')) . '</p>'; + return $output; + } +} + +/** * @defgroup rdf RDFa API * @{ * Functions to describe entities and bundles for RDFa. |