library_feature-XY => feature-nd_reagent/YYY) then make the join in both * directions (ie: in the file nd_reagent.views.inc and the file YYY.views.inc * - Create a field definition for each field in this table using the example fields already * listed. Match the type of the database field to the field definition listed below. * (ie: for a text/varchar field from the database use plain_text_field below) * * NOTE: Creating the table definition file is not enough. You also need to call the * retrieve_nd_reagent_views_data() function from ../tripal_natural_diversity.views.inc:tripal_natural_diversity_views_data() * by adding the following line: * $data = array_merge($data, retrieve_nd_reagent_views_data()); * to the function and including the file directly above the function (blow the function * header by adding: * require_once('views/nd_reagent.views.inc'); * * REMOVE THIS COMMENT IN THE COPY! */ /** * @file * This file defines the data array for a given chado table. This array * is merged into a larger array containing definitions of all tables associated * with this module in: * @see tripal_natural_diversity.views.inc --in tripal_natural_diversity_views_data() * * Documentation on views integration can be found at * http://views2.logrus.com/doc/html/index.html. */ /************************************************************************* * Purpose: this function returns the portion of the data array * which describes the nd_reagent table, it's fields and any joins between it and other tables * @see tripal_natural_diversity_views_data() --in tripal_natural_diversity.views.inc * * Table: nd_reagent * @code CREATE TABLE nd_reagent ( nd_reagent_id serial PRIMARY KEY NOT NULL, name character varying(80) NOT NULL, type_id integer NOT NULL references cvterm (cvterm_id) on delete cascade INITIALLY DEFERRED, feature_id integer ); * @endcode */ function retrieve_nd_reagent_views_data() { global $db_url; $data = array(); // if the chado database is not local to the drupal database // then we need to set the database name. This should always // be 'chado'. if(is_array($db_url) and array_key_exists('chado',$db_url)){ $database = 'chado'; } //Basic table definition----------------------------------- $data['nd_reagent']['table']['group'] = t('Chado ND Reagent'); $data['nd_reagent']['table'] = array( 'field' => 'nd_reagent_id', 'title' => t('Chado ND Reagent'), 'help' => t('Enter some user-friendly description of this tables purpose to the user.'), ); if($database){ $data['nd_reagent']['table']['database'] = $database; } //Relationship Definitions--------------------------------- //Join: nd_reagent => YYY $data['nd_reagent']['table']['join']['YYY'] = array( 'left_field' => 'primary key in YYY table', 'field' => 'foreign key in nd_reagent table', ); //Join: nd_reagent => XY => YYY $data['nd_reagent']['table']['join']['XY'] = array( 'left_field' => 'matching nd_reagent key in the XY table', 'field' => 'foreign key in nd_reagent table', ); $data['nd_reagent']['table']['join']['YYY'] => array( 'left_table' => 'XY', 'left_field' => 'matching nd_reagent key in the XY table', 'field' => 'foreign key in nd_reagent table', ); $data['XY']['table']['join']['YYY'] = array( 'left_field' => 'foreign key in YYY table', 'field' => 'matching YYY key in the XY table', ); //Table Field Definitions---------------------------------- //Field: nd_reagent_id (primary key) $data['nd_reagent']['field_name'] = array( 'title' => t('nd_reagent Primary Key'), 'help' => t('A unique index for every nd_reagent.'), 'field' => array( 'handler' => 'views_handler_field_numeric', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), ); /*....................................................... * Beginning of Example Field definitions * Remove this section when done */ //Field: plain_text_field (chado datatype) $data['nd_reagent']['plain_text_field'] = array( 'title' => t('Human-Readable Name'), 'help' => t('Description of this field.'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); //Field: numeric_field (chado datatype) $data['nd_reagent']['numeric_field'] = array( 'title' => t('Human-Readable Name'), 'help' => t('Description of this field.'), 'field' => array( 'handler' => 'views_handler_field_numeric', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), ); //Field: boolean_field (chado datatype) $data['nd_reagent']['boolean_field'] = array( 'title' => t('Human-Readable Name'), 'help' => t('Description of this field.'), 'field' => array( 'handler' => 'views_handler_field_boolean', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_boolean_operator', ), ); //Field: unix_timestamp (chado datatype) $data['nd_reagent']['unix_timestamp'] = array( 'title' => t('Human-Readable Name'), 'help' => t('Description of this field.'), 'field' => array( 'handler' => 'views_handler_field_date', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort_date', ), 'filter' => array( 'handler' => 'views_handler_filter_date', ), ); //Field: human_readable_date (chado datatype) $data['nd_reagent']['human_readable_date'] = array( 'title' => t('Human-Readable Name'), 'help' => t('Description of this field.'), 'field' => array( 'handler' => 'views_handler_field_readble_date', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort_date', ), ); /* * End of Example Field definitions *......................................................./ return $data; }