function chado_views_handler_field::init

1.x chado_views_handler_field.inc chado_views_handler_field::init(&$view, $options)

init the handler with necessary data.

Parameters

$view: The $view object this handler is attached to.

$options: The item from the database; the actual contents of this will vary based upon the type of handler.

Overrides views_handler_field::init

2 calls to chado_views_handler_field::init()
tripal_views_handler_field_aggregate::init in tripal_views/views/handlers/tripal_views_handler_field_aggregate.inc
init the handler with necessary data.
tripal_views_handler_field_sequence::init in tripal_views/views/handlers/tripal_views_handler_field_sequence.inc
init the handler with necessary data.
2 methods override chado_views_handler_field::init()
tripal_views_handler_field_aggregate::init in tripal_views/views/handlers/tripal_views_handler_field_aggregate.inc
init the handler with necessary data.
tripal_views_handler_field_sequence::init in tripal_views/views/handlers/tripal_views_handler_field_sequence.inc
init the handler with necessary data.

File

tripal_views/views/handlers/chado_views_handler_field.inc, line 13
A chado wrapper for the views_handler_field.

Class

chado_views_handler_field
@file A chado wrapper for the views_handler_field.

Code

function init(&$view, $options) {
  include_once ('chado_wrapper_functions.inc');
  parent::init($view, $options);
}