'flashnode', 'join' => array( 'left' => array( 'table' => 'node', 'field' => 'vid' ), 'right' => array( 'field' => 'vid' ) ), 'fields' => array( 'play_link' => array( 'name' => t('Flashnode: Flash player'), 'notafield' => TRUE, 'sortable' => FALSE, 'option' => array( '#type' => 'select', '#options' => $players, ), 'handler' => 'flashnode_views_handler_field_player', 'help' => t('This will display a player for the flash file.'), ), ), ); return $tables; } /** * Handler for displaying a flash file */ function flashnode_views_handler_field_player($fieldinfo, $fielddata, $value, $data) { return flashnode_content(array('nid' => $data->nid)); }