You are here

views_list_sort.module in Views List Sort 7

Same filename and directory in other branches
  1. 8 views_list_sort.module

File

views_list_sort.module
View source
<?php

/**
 * Implements hook_views_api() from Views.
 */
function views_list_sort_views_api($module = NULL, $api = NULL) {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'views_list_sort') . '/views',
  );
}

Functions

Namesort descending Description
views_list_sort_views_api Implements hook_views_api() from Views.