Projet

Général

Profil

Paste
Télécharger (588 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / media / modules / media_wysiwyg / media_wysiwyg.install @ ca0757b9

1
<?php
2

    
3
/**
4
 * @file
5
 * Install, update and uninstall functions for the Media WYSIWYG module.
6
 */
7

    
8
/**
9
 * Implements hook_uninstall().
10
 */
11
function media_wysiwyg_uninstall() {
12
  // Remove variables.
13
  variable_del('media_wysiwyg_wysiwyg_title');
14
  variable_del('media_wysiwyg_wysiwyg_icon_title');
15
  variable_del('media_wysiwyg_wysiwyg_default_view_mode');
16
  variable_del('media_wysiwyg_wysiwyg_upload_directory');
17
  variable_del('media_wysiwyg_wysiwyg_allowed_types');
18
  variable_del('media_wysiwyg_wysiwyg_allowed_attributes');
19
  variable_del('media_wysiwyg_wysiwyg_browser_plugins');
20
}