You are here

function flatcomments_existing_enable in Flatcomments 6.2

Same name and namespace in other branches
  1. 6 flatcomments_existing/flatcomments_existing.install \flatcomments_existing_enable()

Implementation of hook_enable().

File

flatcomments_existing/flatcomments_existing.install, line 11
(Un)Install, (dis)enable, and update functions.

Code

function flatcomments_existing_enable() {
  drupal_set_message(t('Flatcomments Existing successfully installed. Go to <a href="!url">admin/content/comment/flatten</a> to flatten existing comments.', array(
    '!url' => url('admin/content/comment/flatten'),
  )));
}