You are here

function views_natural_sort_node_insert in Views Natural Sort 7

Implements hook_node_insert().

This keeps our natural sort index up to date.

File

./views_natural_sort.module, line 74
Provides a views filter that sorts titles by a more natural manner by ignoring articles like "The" and "A."

Code

function views_natural_sort_node_insert($node) {
  _views_natural_sort_store_node($node);
}