Parent Directory
|
Revision Log
|
Revision Graph
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 |