You are here

xssprotection.install in XSS Protection 7

Module for managing XSS vulnerability.

File

xssprotection.install
View source
<?php

/**
 * @file
 * Module for managing XSS vulnerability.
 */

/**
 * Implements hook_uninstall().
 */
function xssprotection_uninstall() {
  variable_del('xssprotection_enabled');
  variable_del('xssprotection_text_enabled');
  variable_del('xssprotection_text');
}

Functions

Namesort descending Description
xssprotection_uninstall Implements hook_uninstall().