You are here

function mongodb_help in MongoDB 8.2

Same name and namespace in other branches
  1. 6 mongodb.module \mongodb_help()
  2. 7 mongodb.module \mongodb_help()

Implements hook_help().

File

modules/mongodb/mongodb.module, line 13

Code

function mongodb_help($route) {
  switch ($route) {
    case 'help.page.mongodb':
      return '<p>' . t('The Drupal <a href=":project">MongoDB</a> project implements a generic interface to the <a href=":mongo">MongoDB</a> database server. Read its <a href=":docs">online documentation</a>.', [
        ':project' => 'https://www.drupal.org/project/mongodb',
        ':mongo' => 'https://www.mongodb.com/',
        ':docs' => 'https://fgm.github.io/mongodb',
      ]) . '</p>';
  }
}