root / drupal7 / sites / all / modules / media / modules / media_internet / media_internet.install @ 1f623f01
1 |
<?php |
---|---|
2 |
|
3 |
/** |
4 |
* @file |
5 |
* Install, update and uninstall functions for the Media Internet module. |
6 |
*/ |
7 |
|
8 |
/** |
9 |
* Implements hook_uninstall(). |
10 |
*/ |
11 |
function media_internet_uninstall() { |
12 |
// Remove variables. |
13 |
variable_del('media_internet_fromurl_supported_schemes'); |
14 |
} |
15 |
|
16 |
/** |
17 |
* Rebuild the registry in order to accommodate moved classes. |
18 |
*/ |
19 |
function media_internet_update_7000() { |
20 |
registry_rebuild(); |
21 |
} |