popups.install in Popups API (Ajax Dialogs) 6
Same filename and directory in other branches
File
popups.installView source
<?php
/**
* @file
*/
/**
* Implementation of hook_install().
*
* Ensures popups runs after everything else, since it short circuits in hook_init.
*/
function popups_install() {
db_query("UPDATE {system} SET weight = %d WHERE name = 'popups'", 9999);
}
Functions
Name | Description |
---|---|
popups_install | Implementation of hook_install(). |