You are here

function node_gallery_install in Node Gallery 6.2

Same name and namespace in other branches
  1. 6.3 node_gallery.install \node_gallery_install()
  2. 6 node_gallery.install \node_gallery_install()
  3. 7 node_gallery.install \node_gallery_install()

Implementation of hook_install()

File

./node_gallery.install, line 87
Node gallery install file.

Code

function node_gallery_install() {
  $ret = drupal_install_schema('node_gallery');
  _node_gallery_install_type_create();
  _node_gallery_install_imagecache_presets();
  _node_gallery_set_imagecache_permissions();
  _node_gallery_install_default();
}