You are here

function commentformsettings_install in Node and Comments Form Settings 7.3

Same name and namespace in other branches
  1. 6.3 commentformsettings/commentformsettings.install \commentformsettings_install()
  2. 6.2 commentformsettings/commentformsettings.install \commentformsettings_install()
  3. 7.2 commentformsettings/commentformsettings.install \commentformsettings_install()

Implements hook_install().

Display a welcome message.

File

commentformsettings/commentformsettings.install, line 13
Install, update and uninstall functions for the commentformsettings module.

Code

function commentformsettings_install() {
  drupal_set_message(st('Comments Form Settings is now installed. Customize your content types at <a href="@contenttypes">the content types settings page</a>.', array(
    '@contenttypes' => url('admin/structure/types'),
  )));
}