123456789101112131415161718192021222324252627282930313233 |
- <?php
- function auto_nodetitle_install() {
- db_query("UPDATE {system} SET weight = 5 WHERE name = 'auto_nodetitle'");
- }
- function auto_nodetitle_uninstall() {
- foreach (node_type_get_names('names') as $type => $type_name) {
- variable_del('ant_' . $type);
- variable_del('ant_pattern_' . $type);
- variable_del('ant_php_' . $type);
- }
- }
- function auto_nodetitle_update_1() {
- $ret = array();
- $ret[] = update_sql("UPDATE {system} SET weight = 5 WHERE name = 'auto_nodetitle'");
- return $ret;
- }
|