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

Contents of /contributions/modules/simplemenu/simplemenu.install

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


Revision 1.2 - (show annotations) (download) (as text)
Fri Dec 12 06:24:18 2008 UTC (11 months, 2 weeks ago) by rz
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--2
Changes since 1.1: +14 -0 lines
File MIME type: text/x-php
merging DRUPAL-6--1 into HEAD
1 <?php
2 // $Id: simplemenu.install,v 1.1.2.1 2008/10/12 23:35:48 rz Exp $
3
4 /**
5 * Implementation of hook_update_N().
6 */
7 function simplemenu_update_6001() {
8 // if navigation menu was used in Drupal 5 use the same in Drupal 6.
9 // otherwise, we can't do anything.
10 if(variable_get('simplemenu_menu', 1) == 1) {
11 variable_set('simplemenu_menu', 'navigation:0');
12 }
13 return array();
14 }

  ViewVC Help
Powered by ViewVC 1.1.2