/[drupal]/contributions/modules/comment_workflow/comment_workflow.install
ViewVC logotype

Contents of /contributions/modules/comment_workflow/comment_workflow.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Fri Jul 4 08:07:17 2008 UTC (16 months, 3 weeks ago) by gestaltware
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-2, HEAD
File MIME type: text/x-php
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