function node_gallery_update_6100 in Node Gallery 6.3
Same name and namespace in other branches
- 6 node_gallery.install \node_gallery_update_6100()
- 6.2 node_gallery.install \node_gallery_update_6100()
Implements hook_update_N() Directly installing the default imagecache presets
File
- ./
node_gallery.install, line 630 - Install, update and uninstall functions for the node_gallery module.
Code
function node_gallery_update_6100() {
$ret = array();
node_gallery_install_imagecache_presets();
node_gallery_set_imagecache_permissions();
return $ret;
}