You are here

function features_help in Features 8.4

Same name and namespace in other branches
  1. 8.3 features.module \features_help()
  2. 6 features.module \features_help()
  3. 7.2 features.module \features_help()
  4. 7 features.module \features_help()

Implements hook_help().

File

./features.module, line 13
Main hooks for Features module.

Code

function features_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.features':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Features module provides a user interface for exporting bundles of configuration into modules. For more information, see the online documentation for <a href=":url">Features module</a>', [
        ':url' => 'http://drupal.org/node/2404427',
      ]) . '</p>';
      return $output;
  }
}