comment_uninstall

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');
}
doc_Drupal
2016-10-29 08:51:30
Comments
Leave a Comment

Please login to continue.