config_direct_save.module in Config Direct Save 8
Same filename and directory in other branches
Allows to export configuration after changes.
File
config_direct_save.moduleView 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
Name | Description |
---|---|
config_direct_save_help | Implements hook_help(). |