You are here

config_export_ignore.module in Config Export Ignore 8

File

config_export_ignore.module
View source
<?php

/**
 * @file
 * Contains config_export_ignore.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function config_export_ignore_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the config_export_ignore module.
    case 'help.page.config_export_ignore':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows to ignore configurations while exporting via config split') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
config_export_ignore_help Implements hook_help().