function javascript_aggregator_install in Javascript Aggregator 6
Implementation of hook_install().
File
- ./
javascript_aggregator.install, line 10 - Install, update and uninstall functions for the javascript_aggregator module.
Code
function javascript_aggregator_install() {
// Set the module's weight high so that it runs after other modules.
db_query("UPDATE {system} SET weight = 109 WHERE name = 'javascript_aggregator' AND type = 'module'");
cache_clear_all();
}