You are here

function imagecache_update_5 in ImageCache 6.2

Same name and namespace in other branches
  1. 5.2 imagecache.install \imagecache_update_5()

File

./imagecache.install, line 242

Code

function imagecache_update_5() {

  // enable image API.
  module_rebuild_cache();

  // make sure new modules are in the system table.
  module_enable(array(
    'imageapi',
    'imageapi_gd',
    'imageapi_imagemagick',
  ));

  // enable our new module.
  // @todo: update formatter names: http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/imagecache/imagecache.module?r1=1.68&r2=1.68.2.8&pathrev=DRUPAL-5--2
  // ln: 516 diff 511.
  return array();
}