You are here

unused_modules.module in Unused Modules 8

Same filename and directory in other branches
  1. 6 unused_modules.module
  2. 7 unused_modules.module

File

unused_modules.module
View source
<?php

use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function unused_modules_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name === 'help.page.unused_modules') {
    $readme_content = file_get_contents(dirname(__FILE__) . '/README.md');
    if (\Drupal::moduleHandler()
      ->moduleExists('markdown')) {

      // Use the Markdown filter to render the README.
      $filter_manager = \Drupal::service('plugin.manager.filter');
      $markdown_config = \Drupal::configFactory()
        ->get('markdown.settings')
        ->getRawData();
      $markdown_settings = [
        'settings' => $markdown_config,
      ];
      $filter = $filter_manager
        ->createInstance('markdown', $markdown_settings);
      return $filter
        ->process($readme_content, 'en');
    }
    else {
      return '<pre>' . $readme_content . '</pre>';
    }
  }
}

Functions

Namesort descending Description
unused_modules_help Implements hook_help().