comment_delete.install in Comment Delete 6
Same filename and directory in other branches
File
comment_delete.installView source
<?php
/**
* Implementation of hook_install().
*/
function comment_delete_install() {
db_query("UPDATE {system} SET weight = 1 WHERE name = 'comment_delete'");
}
/**
* Implementation of hook_uninstall().
*/
function comment_delete_uninstall() {
}
Functions
Name | Description |
---|---|
comment_delete_install | Implementation of hook_install(). |
comment_delete_uninstall | Implementation of hook_uninstall(). |