You are here

function imagefield_focus_install in ImageField Focus 7

Same name and namespace in other branches
  1. 6 imagefield_focus.install \imagefield_focus_install()

Implementation of hook_install().

File

./imagefield_focus.install, line 47
Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr

Code

function imagefield_focus_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'imagefield_focus')
    ->execute();
}