14 lines
230 B
PHP
14 lines
230 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Post update functions for Taxonomy.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Clear caches due to updated taxonomy entity views data.
|
||
|
*/
|
||
|
function taxonomy_post_update_clear_views_data_cache() {
|
||
|
// An empty update will flush caches.
|
||
|
}
|