function chado_views_handler_field::query
3.x chado_views_handler_field.inc | chado_views_handler_field::query( |
1.x chado_views_handler_field.inc | chado_views_handler_field::query() |
Determines whether the current field is aggregated or not Note: The parent::query() takes care of adding the field to the query, etc.
Overrides views_handler_field::query
2 calls to chado_views_handler_field::query()
- tripal_views_handler_field_aggregate::query in tripal_views/
views/ handlers/ tripal_views_handler_field_aggregate.inc - Determines whether the current field is aggregated or not Note: The parent::query() takes care of adding the field to the query, etc.
- tripal_views_handler_field_sequence::query in tripal_views/
views/ handlers/ tripal_views_handler_field_sequence.inc - We need to add a few fields to our query
2 methods override chado_views_handler_field::query()
- tripal_views_handler_field_aggregate::query in tripal_views/
views/ handlers/ tripal_views_handler_field_aggregate.inc - Determines whether the current field is aggregated or not Note: The parent::query() takes care of adding the field to the query, etc.
- tripal_views_handler_field_sequence::query in tripal_views/
views/ handlers/ tripal_views_handler_field_sequence.inc - We need to add a few fields to our query
File
- tripal_views/
views/ handlers/ chado_views_handler_field.inc, line 87 - A chado wrapper for the views_handler_field.
Class
- chado_views_handler_field
- @file A chado wrapper for the views_handler_field.
Code
function query() {
parent::query();
$this->aggregated = chado_wrapper_is_aggregated_by_join($this);
}