You are here

function asaf_install in Asaf (ajax submit for any form) 7

Same name and namespace in other branches
  1. 8 asaf.install \asaf_install()

File

./asaf.install, line 3

Code

function asaf_install() {
  db_update('system')
    ->fields(array(
    'weight' => 8192,
  ))
    ->condition('name', 'asaf', '=')
    ->execute();
}