You are here

function views_natural_sort_entity_update in Views Natural Sort 7.2

Same name and namespace in other branches
  1. 8.2 views_natural_sort.module \views_natural_sort_entity_update()

Implements hook_entity_update().

This keeps our natural sort index up to date.

File

./views_natural_sort.module, line 178
Views Natural Sort module.

Code

function views_natural_sort_entity_update($entity, $type) {
  views_natural_sort_entity_insert($entity, $type);
}