You are here

biblio_handler_sort_contributor_lastname.inc in Bibliography Module 6.2

Views sort handler for contributor lastname for Drupal biblio module.

File

views/biblio_handler_sort_contributor_lastname.inc
View source
<?php

/**
 * @file
 * Views sort handler for contributor lastname for Drupal biblio module.
 */
class biblio_handler_sort_contributor_lastname extends views_handler_sort {
  function query() {
    parent::query();
    $this->query
      ->add_where(0, "biblio_contributor.rank = 0");
  }

}

Classes

Namesort descending Description
biblio_handler_sort_contributor_lastname @file Views sort handler for contributor lastname for Drupal biblio module.