You are here

function config_direct_save_help in Config Direct Save 8.2

Same name and namespace in other branches
  1. 8 config_direct_save.module \config_direct_save_help()

Implements hook_help().

File

./config_direct_save.module, line 13
Allows to export configuration after changes.

Code

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;
  }
}