biblio_handler_field_biblio_type.inc in Bibliography Module 6.2
Same filename and directory in other branches
Views biblio type handler for Drupal biblio module.
File
views/biblio_handler_field_biblio_type.incView source
<?php
/**
* @file
* Views biblio type handler for Drupal biblio module.
*/
class biblio_handler_field_biblio_type extends views_handler_field {
function init(&$view, $options) {
parent::init($view, $options);
if ($view->base_table == 'node_revisions') {
$this->additional_fields['vid'] = array(
'table' => 'node_revisions',
'field' => 'vid',
);
}
else {
$this->additional_fields['vid'] = array(
'table' => 'node',
'field' => 'vid',
);
}
}
function pre_render($values) {
$this->field_alias = $this->aliases['vid'];
$vids = array();
foreach ($values as $result) {
if (!empty($result->{$this->aliases['vid']})) {
$vids[] = $result->{$this->aliases['vid']};
}
}
if ($vids) {
//$result = db_query("SELECT bt.name AS node_vid, bkd.* FROM {biblio_keyword_data} bkd INNER JOIN {biblio_keyword} bk ON bkd.kid = bk.kid WHERE bk.vid IN (" . implode(', ', $vids) . ") ORDER BY bkd.word");
$result = db_query("SELECT name, tid\n FROM {biblio_types} t\n WHERE IN (" . implode(', ', $vids) . ")\n ");
while ($term = db_fetch_object($result)) {
// if (empty($this->options['link_to_taxonomy'])) {
$this->items[$term->node_vid][$term->tid] = check_plain($term->name);
// }
// else {
// $this->items[$term->node_vid][$term->kid] = l($term->word, taxonomy_term_path($term));
// }
}
}
}
}
Classes
Name | Description |
---|---|
biblio_handler_field_biblio_type | @file Views biblio type handler for Drupal biblio module. |