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

Diff of /contributions/modules/override_node_options/override_node_options.install

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

revision 1.1.4.1, Sun Jan 11 12:30:32 2009 UTC revision 1.1.4.2, Sun Jan 11 13:34:58 2009 UTC
# Line 0  Line 1 
1    <?php
2    // $Id: $
3    
4    /**
5     * Implementation of hook_install().
6     */
7    function override_node_options_install() {
8      // nothing to do
9    }
10    
11    /**
12     * Implementation of hook_uninstall().
13     */
14    function override_node_options_uninstall() {
15      db_query("DELETE FROM {variable} WHERE name LIKE 'override_node_options_%'");
16      db_query("DELETE FROM {system} WHERE name = 'override_node_options'");
17      // TODO we could be leaving permissions in the permission table, but they're tricky to remove
18    }
19    

Legend:
Removed from v.1.1.4.1  
changed lines
  Added in v.1.1.4.2

  ViewVC Help
Powered by ViewVC 1.1.2