123456789101112131415161718192021222324 |
- <?php
- /**
- * @file
- * Contains editors_menus.module.
- */
- use Drupal\Core\Routing\RouteMatchInterface;
- /**
- * Implements hook_help().
- */
- function editors_menus_help($route_name, RouteMatchInterface $route_match) {
- switch ($route_name) {
- // Main module help for the editors_menus module.
- case 'help.page.editors_menus':
- $output = '';
- $output .= '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('create editors admin menus through module as they will be exportable as config') . '</p>';
- return $output;
- default:
- }
- }
|