Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | function mongodb_help($route) { |
||
14 | switch ($route) { |
||
15 | case 'help.page.mongodb': |
||
16 | 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>.', [ |
||
17 | ':project' => 'https://www.drupal.org/project/mongodb', |
||
18 | ':mongo' => 'https://www.mongodb.com/', |
||
19 | ':docs' => 'https://fgm.github.io/mongodb', |
||
20 | ]) . '</p>'; |
||
21 | } |
||
22 | } |
||
23 |