You are here

function cufon_install in Cufón 7.2

Same name and namespace in other branches
  1. 6 cufon.install \cufon_install()

Implementation of hook_install().

File

./cufon.install, line 10
Installation code for Cufon

Code

function cufon_install() {

  // Ensure late execution
  $update = db_update('system')
    ->condition('name', 'cufon')
    ->fields(array(
    'weight' => 100,
  ));
}