Project

General

Profile

Paste
Download (299 Bytes) Statistics
| Branch: | Revision:

root / drupal7 / sites / all / modules / media / modules / media_wysiwyg_view_mode / media_wysiwyg_view_mode.install @ 1f623f01

1
<?php
2

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

    
8
/**
9
 * Implements hook_uninstall().
10
 */
11
function media_wysiwyg_view_mode_uninstall() {
12
  db_delete('variable')
13
    ->condition('name', "media_wysiwyg_view_mode_%", "LIKE")
14
    ->execute();
15
}