ajax_comments.install in AJAX Comments 5
Same filename and directory in other branches
File
ajax_comments.installView source
<?php
/**
* Implementaton of hook_install
*/
function ajax_comments_install() {
db_query("UPDATE {system} SET weight = 5 WHERE name = 'ajax_comments'");
}
/**
* Implementaton of hook_uninstall
*/
function ajax_comments_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'ajax_comments_%'");
db_query("DELETE FROM {system} WHERE name = 'ajax_comments'");
}
Functions
Name | Description |
---|---|
ajax_comments_install | Implementaton of hook_install |
ajax_comments_uninstall | Implementaton of hook_uninstall |