68a69,84 > // Twitter status id > $data['twitter']['twitter_id'] = array( > 'title' => t('Status ID'), > 'help' => t('The ID of the Twitter status message.'), > 'field' => array( > 'handler' => 'views_handler_field', > 'click sortable' => TRUE, > ), > 'filter' => array( > 'handler' => 'views_handler_filter_numeric', > 'allow empty' => TRUE, > ), > 'sort' => array( > 'handler' => 'views_handler_sort', > ), > ); 113a130,145 > // Twitter reply-to-status id > $data['twitter']['in_reply_to_status_id'] = array( > 'title' => t('Reply ID'), > 'help' => t('The ID of the Twitter status this message is replying to.'), > 'field' => array( > 'handler' => 'views_handler_field', > 'click sortable' => TRUE, > ), > 'filter' => array( > 'handler' => 'views_handler_filter_numeric', > 'allow empty' => TRUE, > ), > 'sort' => array( > 'handler' => 'views_handler_sort', > ), > ); 114a147,165 > // Twitter reply-to-status screen name > $data['twitter']['in_reply_to_screen_name'] = array( > 'title' => t('Reply name'), > 'help' => t('The login account of the Twitter user this message is replying to.'), > 'field' => array( > 'handler' => 'views_handler_field', > 'click sortable' => TRUE, > ), > 'filter' => array( > 'handler' => 'views_handler_filter_string', > 'allow empty' => TRUE, > ), > 'sort' => array( > 'handler' => 'views_handler_sort', > ), > 'argument' => array( > 'handler' => 'views_handler_argument_string', > ), > );