' . t('About') . ''; $output .= '

' . t('Reporting functionality for OpenCase.') . '

'; return $output; default: } } /** * Implements hook_uninstall(). * Removes configs. */ function opencase_reporting_uninstall() { $configs = [ 'search_api.server.opencase_reporting_server', 'search_api.index.opencase_reporting_actors' ]; foreach($configs as $config) { Drupal::configFactory()->getEditable($config)->delete(); } }