You are here

function scs_uninstall in Simplenews Content Selection 7

Same name and namespace in other branches
  1. 8 scs.install \scs_uninstall()
  2. 7.2 scs.install \scs_uninstall()

Implements hook_uninstall().

File

./scs.install, line 6

Code

function scs_uninstall() {

  // This variable can be used by advanced users (there is no user
  // interface to set it) to the desired text format for new
  // simplenews newsletters
  variable_del('scs_body_format');

  // Other variables to delete on uninstall
  variable_del('scs_content_types');
  variable_del('scs_format');
  variable_del('scs_publish_default');
  variable_del('scs_default_title');
}