You are here

function ffc_install in Field formatter conditions 7

Implements hook_install().

File

./ffc.install, line 11
Field formatter conditions install file.

Code

function ffc_install() {
  db_update('system')
    ->fields(array(
    'weight' => 30,
  ))
    ->condition('name', 'ffc')
    ->execute();
}