Parent Directory
|
Revision Log
|
Revision Graph
Some text cleanup.
| 1 | <?php |
| 2 | // $Id: prepopulate.install,v 1.3 2008/03/16 14:06:29 add1sun Exp $ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_install(). |
| 6 | */ |
| 7 | function prepopulate_install() { |
| 8 | $ret = array(); |
| 9 | // Ensure that prepopulate sinks to the bottom during hook calls |
| 10 | // there should be a UI for this at some point. |
| 11 | $ret[] = db_query("UPDATE {system} SET weight = 10 WHERE name = 'prepopulate'"); |
| 12 | return $ret; |
| 13 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |