Mercurial > hg > rr-repo
view sites/all/modules/prepopulate/prepopulate.install @ 9:830c812b520f
added smtp module
author | root <root@paio.local> |
---|---|
date | Mon, 28 Oct 2013 15:34:27 +0000 |
parents | ce11bbd8f642 |
children |
line wrap: on
line source
<?php /** * Implementation of hook_install(). */ function prepopulate_install() { $ret = array(); // Ensure that prepopulate sinks to the bottom during hook calls // there should be a UI for this at some point. $ret[] = db_query("UPDATE {system} SET weight = 10 WHERE name = 'prepopulate'"); return $ret; }