/[drupal]/contributions/modules/blogtheme/blog_theme.install
ViewVC logotype

Diff of /contributions/modules/blogtheme/blog_theme.install

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

revision 1.2, Thu Apr 10 13:19:59 2008 UTC revision 1.3, Tue Sep 30 08:59:48 2008 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: blog_theme.install,v 1.1 2008/04/10 11:15:08 augustin Exp $  // $Id: blog_theme.install,v 1.2 2008/04/10 13:19:59 augustin Exp $
3    
4  function blog_theme_update_5001() {  function blog_theme_update_5001() {
5    $ret = array();    $ret = array();
# Line 10  function blog_theme_update_5001() { Line 10  function blog_theme_update_5001() {
10    
11    return $ret;    return $ret;
12  }  }
13    
14    /**
15     * Delete obsolete variable.
16    */
17    function blog_theme_update_6000() {
18      $ret = array();
19      variable_del('blog_theme_supported');
20      return $ret;
21    }
22    
23    
24    /**
25     * Implementation of hook_uninstall().
26    */
27    function outline_uninstall() {
28      db_query("DELETE FROM {variable} WHERE name LIKE 'blog_theme_%%'");
29    }
30    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.2