Parent Directory
|
Revision Log
|
Revision Graph
Initial Release for Drupal 5.x
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_uninstall(). |
| 6 | */ |
| 7 | function comment_workflow_uninstall() { |
| 8 | foreach (node_get_types() as $type => $name) { |
| 9 | variable_del('comment_workflow_' . $type); |
| 10 | } |
| 11 | cache_clear_all(); |
| 12 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |