| Versionen | |
|---|---|
| drupal7 | node_update_7003() |
Remove the node_counter if the statistics module is uninstalled.
modules/
<?php
function node_update_7003() {
$ret = array();
if (drupal_get_installed_schema_version('statistics') == SCHEMA_UNINSTALLED) {
db_drop_table($ret, 'node_counter');
}
return $ret;
}
?>
Kommentare
Kommentar hinzufügen