function node_gallery_required_modules in Node Gallery 6.3
2 calls to node_gallery_required_modules()
- node_gallery_install in ./
node_gallery.install - Implements hook_install()
- node_gallery_update_6300 in ./
node_gallery.install - MAJOR UPGRADE - please don't blindly update from 2.x to 3.x! Your data will migrate, but some of your settings and most of your theming will need to be redone.
File
- ./
node_gallery.install, line 137 - Install, update and uninstall functions for the node_gallery module.
Code
function node_gallery_required_modules() {
return array(
'content',
'views',
'filefield',
'imageapi',
'imagecache',
'imagefield',
);
}