comment_uninstall()
Implements hook_uninstall().
File
- core/modules/comment/comment.install, line 16
- Install, update and uninstall functions for the Comment module.
Code
function comment_uninstall() { // Remove the comment fields. $fields = entity_load_multiple_by_properties('field_storage_config', array('type' => 'comment')); foreach ($fields as $field) { $field->delete(); } // Remove state setting. \Drupal::state()->delete('comment.node_comment_statistics_scale'); }
Please login to continue.