image_gallery.install in Image 5
Same filename and directory in other branches
File
contrib/image_gallery/image_gallery.installView source
<?php
function image_gallery_install() {
// Nothing to do.
}
function image_gallery_uninstall() {
if ($vid = variable_get('image_gallery_nav_vocabulary', FALSE)) {
taxonomy_del_vocabulary($vid);
}
variable_del('image_images_per_page');
variable_del('image_gallery_nav_vocabulary');
variable_del('image_gallery_node_info');
}
function image_gallery_update_1() {
$ret = array();
if ($vid = variable_get('image_nav_vocabulary', '')) {
$ret[] = update_sql("UPDATE {vocabulary} SET module='image_gallery' WHERE vid=" . (int) $vid);
}
else {
$ret[] = update_sql("UPDATE {vocabulary} SET module='image_gallery' WHERE module='image'");
}
return $ret;
}