You are here

function nodeformsettings_install in Node and Comments Form Settings 6.3

Same name and namespace in other branches
  1. 6 nodeformsettings.install \nodeformsettings_install()
  2. 6.2 nodeformsettings.install \nodeformsettings_install()
  3. 7.3 nodeformsettings.install \nodeformsettings_install()
  4. 7.2 nodeformsettings.install \nodeformsettings_install()

Implementation of hook_install(). Display a welcome message

File

./nodeformsettings.install, line 6

Code

function nodeformsettings_install() {
  db_query("UPDATE {system} SET weight = 1 WHERE name = 'nodeformsettings'");
  drupal_set_message(t('Node Form Settings is now installed. Customize your content types at <a href="@contenttypes">the content types settings page</a>.', array(
    '@contenttypes' => url('admin/content/types'),
  )));
}