| 1 |
|
<?php |
| 2 |
|
// $Id: cleanfeeds.install,v 1.1.2.1 2008/03/13 16:43:11 kbahey Exp $ |
| 3 |
|
|
| 4 |
|
function cleanfeeds_set_module_weight() { |
| 5 |
|
// We want this module to be called last, so that it really cleans everything, |
| 6 |
|
// regardless of what other modules have inserted in the feeds |
| 7 |
|
db_query("UPDATE {system} SET weight = 1000 WHERE name = 'cleanfeeds' AND type = 'module';"); |
| 8 |
|
} |
| 9 |
|
|
| 10 |
|
function cleanfeeds_install() { |
| 11 |
|
cleanfeeds_set_module_weight(); |
| 12 |
|
} |
| 13 |
|
|
| 14 |
|
function cleanfeeds_update_1() { |
| 15 |
|
cleanfeeds_set_module_weight(); |
| 16 |
|
return array(); |
| 17 |
|
} |