You are here

config_direct_save.module in Config Direct Save 8

Same filename and directory in other branches
  1. 8.2 config_direct_save.module

Allows to export configuration after changes.

File

config_direct_save.module
View source
<?php

/**
 * @file
 * Allows to export configuration after changes.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function config_direct_save_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'config_direct_save.update_configuration_form':
      $output = '';
      $output .= '<p>' . t('Update the full configuration of this site in the sync directory.') . '</p>';
      return $output;
  }
}

Functions

Namesort descending Description
config_direct_save_help Implements hook_help().