You are here

function _html5_tools_heaviest in HTML5 Tools 6

Helper function that makes html5_tools the heaviest module.

2 calls to _html5_tools_heaviest()
html5_tools_install in ./html5_tools.install
Implementation of hook_install().
html5_tools_update_6000 in ./html5_tools.install
Update function.

File

./html5_tools.install, line 26
Set up htm5_tools to be the heaviest.

Code

function _html5_tools_heaviest() {
  db_query("UPDATE {system} SET weight = %d WHERE name = 'html5_tools'", 100000);
}