12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- function retrieve_feature_misc_tables_views_data() {
- $data = array();
-
-
-
-
- $data['organism']['num_features'] = array(
- 'title' => 'Number of Features',
- 'help' => 'Provides a count of the number of features associated with a given organism',
- 'field' => array(
- 'handler' => 'views_handler_field_chado_count',
- 'table_to_query' => 'feature',
- ),
- );
-
-
-
- $data['library']['num_features'] = array(
- 'title' => 'Number of Features',
- 'help' => 'Provides a count of the number of features associated with a given library',
- 'field' => array(
- 'handler' => 'views_handler_field_chado_count',
- 'table_to_query' => 'library_feature',
- ),
- );
-
-
-
- $data['analysis']['num_features'] = array(
- 'title' => 'Number of Features',
- 'help' => 'Provides a count of the number of features associated with a given analysis',
- 'field' => array(
- 'handler' => 'views_handler_field_chado_count',
- 'table_to_query' => 'analysisfeature',
- ),
- );
- return $data;
- }
|