123456789101112131415161718192021222324 |
- <?php
- /**
- * @file
- * Contains materio_sapi.module.
- */
- use Drupal\Core\Routing\RouteMatchInterface;
- /**
- * Implements hook_help().
- */
- function materio_sapi_help($route_name, RouteMatchInterface $route_match) {
- switch ($route_name) {
- // Main module help for the materio_sapi module.
- case 'help.page.materio_sapi':
- $output = '';
- $output .= '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('Search Api Materio module') . '</p>';
- return $output;
- default:
- }
- }
|