Parent Directory
|
Revision Log
|
Revision Graph
|
Patch
| revision 1.1, Sat Mar 21 14:53:08 2009 UTC | revision 1.1.2.1, Sat Mar 21 14:53:08 2009 UTC | |
|---|---|---|
| # | Line 0 | Line 1 |
| 1 | <?php | |
| 2 | // $Id$ | |
| 3 | ||
| 4 | /** | |
| 5 | * @file | |
| 6 | * | |
| 7 | */ | |
| 8 | ||
| 9 | /** | |
| 10 | * Implementation of hook_uninstall(). | |
| 11 | */ | |
| 12 | function inline_registration_uninstall() { | |
| 13 | // Delete variables. | |
| 14 | foreach (node_get_types() as $type) { | |
| 15 | variable_del('inline_registration_'. $type->type); | |
| 16 | variable_del('inline_registration_weight_'. $type->type); | |
| 17 | } | |
| 18 | } |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |