1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- function retrieve_library_misc_tables_views_data() {
- $data = array();
-
-
-
-
- $data['feature']['num_libraries'] = array(
- 'title' => "Number of Libraries",
- 'help' => "Provides a count of the number of libraries associated with a given feature",
- 'field' => array(
- 'handler' => 'views_handler_field_chado_count',
- 'table_to_query' => 'library_feature',
- ),
- );
-
-
-
- $data['organism']['num_libraries'] = array(
- 'title' => 'Number of Libraries',
- 'help' => 'Provides a count of the number of libraries associated with a given organism',
- 'field' => array(
- 'handler' => 'views_handler_field_chado_count',
- 'table_to_query' => 'library',
- ),
- );
-
- return $data;
- }
|