You are here

function views_natural_sort_entity_update in Views Natural Sort 8.2

Same name and namespace in other branches
  1. 7.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 99
Contains views_natural_sort.module..

Code

function views_natural_sort_entity_update(EntityInterface $entity) {
  views_natural_sort_entity_insert($entity);
}