imageeditor_imagefield.install in Image Editor 7
Install and uninstall functions for Image Editor for Image Field.
File
imageeditor_imagefield/imageeditor_imagefield.installView source
<?php
/**
* @file
* Install and uninstall functions for Image Editor for Image Field.
*/
/**
* Implements hook_install().
*/
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'");
}
/**
* Image Editor for Image Field needs to load after FileField Sources (which has weight = 5).
*/
function imageeditor_imagefield_update_7001(&$sandbox) {
// 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'");
}
Functions
Name![]() |
Description |
---|---|
imageeditor_imagefield_install | Implements hook_install(). |
imageeditor_imagefield_update_7001 | Image Editor for Image Field needs to load after FileField Sources (which has weight = 5). |