You are here

function image_install in Image 6

Same name and namespace in other branches
  1. 5.2 image.install \image_install()
  2. 5 image.install \image_install()
  3. 7 image.install \image_install()

Implementation of hook_install().

File

./image.install, line 43

Code

function image_install() {
  drupal_install_schema('image');

  // Set reasonable default node options (not promoted to front page).
  variable_set('node_options_image', array(
    'status',
  ));
}