You are here

ajax_comments.install in AJAX Comments 5

Same filename and directory in other branches
  1. 6 ajax_comments.install
  2. 7 ajax_comments.install

File

ajax_comments.install
View 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

Namesort descending Description
ajax_comments_install Implementaton of hook_install
ajax_comments_uninstall Implementaton of hook_uninstall