You are here

function image_gallery_install in Image 6

Same name and namespace in other branches
  1. 5.2 contrib/image_gallery/image_gallery.install \image_gallery_install()
  2. 5 contrib/image_gallery/image_gallery.install \image_gallery_install()
  3. 7 contrib/image_gallery/image_gallery.install \image_gallery_install()

Implementation of hook_install().

File

contrib/image_gallery/image_gallery.install, line 6

Code

function image_gallery_install() {

  // Notify the user of the existence of the suggested menu item.
  $t = get_t();
  drupal_set_message($t('Image gallery has been installed. You may want to enable the <a href="@navigation-menu-url">Image galleries menu item</a>.', array(
    '@navigation-menu-url' => url('admin/build/menu-customize/navigation'),
  )));
}