biblio_handler_sort_contributor_lastname.inc in Bibliography Module 6.2
Same filename and directory in other branches
Views sort handler for contributor lastname for Drupal biblio module.
File
views/biblio_handler_sort_contributor_lastname.incView 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
Name | Description |
---|---|
biblio_handler_sort_contributor_lastname | @file Views sort handler for contributor lastname for Drupal biblio module. |