function logs_http_uninstall in Logs HTTP 8
Same name and namespace in other branches
- 7 logs_http.install \logs_http_uninstall()
Implements hook_uninstall().
Delete all Logs http configuration.
File
- ./
logs_http.install, line 13 - Uninstall function for the Logs HTTP module.
Code
function logs_http_uninstall() {
\Drupal::configFactory()
->getEditable('logs_http.settings')
->delete();
}