You are here

function itweak_upload_install in iTweak Upload 6.2

Same name and namespace in other branches
  1. 7.3 itweak_upload.install \itweak_upload_install()

Implementation of hook_install()

File

./itweak_upload.install, line 72
Installation code for iTweakUpload.

Code

function itweak_upload_install() {
  db_query("UPDATE {system} SET weight = -10 WHERE name = 'itweak_upload'");
  $ret = _itweak_upload_install_imagecache_presets();
  if (!$ret[0]['success']) {
    drupal_set_message($ret[0]['query']);
  }

  //??  cache_clear_all('theme_registry', 'cache', TRUE);
}