You are here

function cdn_install in CDN 6.2

Implementation of hook_install().

File

./cdn.install, line 12
Install file.

Code

function cdn_install() {

  // CDN must run after JavaScript aggregator (weight 9999) in fallback mode.
  db_query("UPDATE {system} SET weight = 10000 WHERE name = 'cdn'");
  drupal_rebuild_theme_registry();
}