You are here

function views_natural_sort_views_api in Views Natural Sort 7

Same name and namespace in other branches
  1. 6 views_natural_sort.module \views_natural_sort_views_api()
  2. 7.2 views_natural_sort.module \views_natural_sort_views_api()

Implementation of hook_views_api().

File

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

Code

function views_natural_sort_views_api() {
  return array(
    'api' => 2.0,
  );
}