function _emvideo_update_reset_cache in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emvideo/emvideo.install \_emvideo_update_reset_cache()
- 6.2 contrib/emvideo/emvideo.install \_emvideo_update_reset_cache()
Clear the content and views caches.
6 calls to _emvideo_update_reset_cache()
- emvideo_update_1 in contrib/
emvideo/ emvideo.install - We need to make sure to show our new 'embed code' filter on Views.
- emvideo_update_2 in contrib/
emvideo/ emvideo.install - We need a new data field for extra info stored by certain providers, such as blip.tv.
- emvideo_update_3 in contrib/
emvideo/ emvideo.install - Since we made our engine dependent on emfield, we need to change some variables accordingly.
- emvideo_update_5 in contrib/
emvideo/ emvideo.install - Changed the data structure for blip.tv
- emvideo_update_6013 in contrib/
emvideo/ emvideo.install - Add a duration column to existing fields.
File
- contrib/
emvideo/ emvideo.install, line 526 - Installation, configuration, and removal of the emvideo module.
Code
function _emvideo_update_reset_cache() {
$ret = _emvideo_update_reset_cache_views();
$ret[] = update_sql("DELETE FROM {cache_content}");
return $ret;
}