You are here

function social_gdpr_help in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  2. 8.2 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  3. 8.3 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  4. 8.4 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  5. 8.5 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  6. 8.6 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  7. 8.7 modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  8. 10.3.x modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  9. 10.0.x modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  10. 10.1.x modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()
  11. 10.2.x modules/custom/social_gdpr/social_gdpr.module \social_gdpr_help()

Implements hook_help().

File

modules/custom/social_gdpr/social_gdpr.module, line 16
Contains social_gdpr.module.

Code

function social_gdpr_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the social_gdpr module.
    case 'help.page.social_gdpr':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Integrate Data Policy module.') . '</p>';
      return $output;
  }
}