00001 <?php 00007 class views_handler_argument_file_fid extends views_handler_argument_numeric { 00011 function title_query() { 00012 $titles = db_select('file_managed', 'f') 00013 ->fields('f', array('filename')) 00014 ->condition('fid', $this->value) 00015 ->execute() 00016 ->fetchCol(); 00017 foreach ($titles as &$title) { 00018 $title = check_plain($title); 00019 } 00020 return $titles; 00021 } 00022 }