12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- function retrieve_stock_misc_tables_views_data() {
- $data = array();
-
-
-
-
- $data['organism']['num_stocks'] = array(
- 'title' => 'Number of Stocks',
- 'help' => 'Provides a count of the number of stocks associated with a given organism',
- 'field' => array(
- 'handler' => 'views_handler_field_chado_count',
- 'table_to_query' => 'stock',
- ),
- );
-
- return $data;
- }
|