You are here

function views_natural_sort_node_delete in Views Natural Sort 7

Implementation of hook_node_delete().

This keep sour natural sort index clean.

File

./views_natural_sort.module, line 92
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_delete($node) {
  _views_natural_sort_remove_node($node);
}