This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/cck/includes/views/handlers/content_handler_argument_reference.inc

24 lines
725 B
PHP

<?php
/**
* @file
* Provide handler to replace reference with title.
*/
class content_handler_argument_reference extends content_handler_argument_numeric {
/**
* Override the behavior of title().
*/
function title_query() {
$titles = array();
$placeholders = implode(', ', array_fill(0, sizeof($this->value), '%d'));
$table_data = views_fetch_data($this->name_table);
$table = array_shift($table_data['table']['join']);
$result = db_query("SELECT $this->name_field AS title FROM {". $table['table'] ."} WHERE ". $table['field'] ." IN ($placeholders)", $this->value);
while ($row = db_fetch_object($result)) {
$titles[] = check_plain($row->title);
}
return $titles;
}
}