tagadelic.install in Tagadelic 7
Same filename and directory in other branches
Installation/updates for tagadelic.
File
tagadelic.installView source
<?php
/**
* @file
* Installation/updates for tagadelic.
*/
/**
* Clear cache.
*/
function tagadelic_update_6100() {
$ret = array();
// We want to remove cache entries that were added as CACHE_PERMANENT. The
// cid's depend on the taxonomies involved but we can just remove anything
// with a cid prefixed tagadelic_cache_
$ret[] = update_sql("DELETE FROM {cache} WHERE cid LIKE 'tagadelic_cache_%'");
return $ret;
}
Functions
Name | Description |
---|---|
tagadelic_update_6100 | Clear cache. |