nice_menus.install in Nice Menus 6
Same filename and directory in other branches
File
nice_menus.installView source
<?php
/**
* Implementation of hook_update_N().
*/
function nice_menus_update_6000() {
// Existing blocks need to be set to no caching.
$ret = array();
$ret[] = update_sql("UPDATE {blocks} SET cache = -1 WHERE module = 'nice_menus'");
return $ret;
}
Functions
Name | Description |
---|---|
nice_menus_update_6000 | Implementation of hook_update_N(). |