You are here

function name_install in Name Field 6

Same name and namespace in other branches
  1. 7 name.install \name_install()

Implementation of hook_install().

File

./name.install, line 44
Standard installation functions for name.

Code

function name_install() {
  drupal_install_schema('name');
  drupal_load('module', 'content');
  content_notify('install', 'name');

  // Inserts some common name formats.
  // These all map to eariler hard-coded options.
  name_install_default_formats();
}