summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/sqlite/sqlite.module
blob: 324b71bd67943a00118533c2ba5da4baf97a1b0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

/**
 * @file
 * The SQLite module provides the connection between Drupal and a SQLite database.
 */

use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function sqlite_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.sqlite':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The SQLite module provides the connection between Drupal and a SQLite database. For more information, see the <a href=":sqlite">online documentation for the SQLite module</a>.', [':sqlite' => 'https://www.drupal.org/docs/core-modules-and-themes/core-modules/sqlite-module']) . '</p>';
      return $output;

  }
}