You are here

function country_state_city_help in Country, State and City Fields 8

Implements hook_help().

File

./country_state_city.module, line 14
Contains country_state_city.module.

Code

function country_state_city_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.country_state_city':
      $text = file_get_contents(__DIR__ . '/README.md');
      if (!\Drupal::moduleHandler()
        ->moduleExists('markdown')) {
        return '<pre>' . Html::escape($text) . '</pre>';
      }
      else {

        // Use the Markdown filter to render the README.
        $filter_manager = \Drupal::service('plugin.manager.filter');
        $settings = \Drupal::configFactory()
          ->get('markdown.settings')
          ->getRawData();
        $config = [
          'settings' => $settings,
        ];
        $filter = $filter_manager
          ->createInstance('markdown', $config);
        return $filter
          ->process($text, 'en');
      }
  }
  return NULL;
}