function imageeditor_imagefield_install in Image Editor 7
Implements hook_install().
File
- imageeditor_imagefield/
imageeditor_imagefield.install, line 10 - Install and uninstall functions for Image Editor for Image Field.
Code
function imageeditor_imagefield_install() {
// Image Editor for Image Field needs to load after FileField Sources (which has weight = 5).
db_query("UPDATE {system} SET weight = 10 WHERE type = 'module' AND name = 'imageeditor_imagefield'");
}