Mercurial > defr > drupal > popups
annotate popups.install @ 1:4215c43e74eb
Popups: Mise à jour en version alpha6
author | Franck Deroche <franck@defr.org> |
---|---|
date | Fri, 31 Dec 2010 13:44:00 +0100 |
parents | 76f9b43738f2 |
children |
rev | line source |
---|---|
franck@0 | 1 <?php |
franck@1 | 2 // $Id: popups.install,v 1.4.8.3 2010/12/10 02:09:16 drewish Exp $ |
franck@0 | 3 |
franck@0 | 4 /** |
franck@0 | 5 * @file |
franck@0 | 6 */ |
franck@0 | 7 |
franck@0 | 8 /** |
franck@0 | 9 * Implementation of hook_install(). |
franck@0 | 10 * |
franck@1 | 11 * Ensures popups runs after everything else, since it short circuits in hook_init. |
franck@0 | 12 */ |
franck@0 | 13 function popups_install() { |
franck@0 | 14 db_query("UPDATE {system} SET weight = %d WHERE name = 'popups'", 9999); |
franck@0 | 15 } |