You are here

views_filters_selective.api.php in Views Selective Filters 7

API documentation for the Views Selective Exposed Filters module.

File

views_filters_selective.api.php
View source
<?php

/**
 * @file
 * API documentation for the Views Selective Exposed Filters module.
 */

/**
 * Alter the order of a filter options here.
 *
 * @param array $oids
 *   An array of options for a filter.
 * @param object $handler
 *   An instance of the views_handler_filter_selective class.
 */
function hook_views_filters_selective_sort_alter(array &$oids, $handler) {
  if ($handler->view->name == 'SOME_VIEW_NAME' && $handler->real_field == 'SOME_FIELD_NAME') {

    // Re-order $oids here.
  }
}

Functions

Namesort descending Description
hook_views_filters_selective_sort_alter Alter the order of a filter options here.