taxrank__infraspecific_taxon.inc 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. class taxrank__infraspecific_taxon extends ChadoField {
  3. // --------------------------------------------------------------------------
  4. // EDITABLE STATIC CONSTANTS
  5. //
  6. // The following constants SHOULD be set for each descendent class. They are
  7. // used by the static functions to provide information to Drupal about
  8. // the field and it's default widget and formatter.
  9. // --------------------------------------------------------------------------
  10. // The default lable for this field.
  11. public static $default_label = 'Infraspecific Taxon';
  12. // The default description for this field.
  13. public static $description = 'Specifies the infraspecific taxon of an organism.';
  14. // Provide a list of instance specific settings. These can be access within
  15. // the instanceSettingsForm. When the instanceSettingsForm is submitted
  16. // then Drupal with automatically change these settings for the instnace.
  17. // It is recommended to put settings at the instance level whenever possible.
  18. // If you override this variable in a child class be sure to replicate the
  19. // term_name, term_vocab, term_accession and term_fixed keys as these are
  20. // required for all TripalFields.
  21. public static $default_instance_settings = array(
  22. // The short name for the vocabulary (e.g. shcema, SO, GO, PATO, etc.).
  23. 'term_vocabulary' => 'TAXRANK',
  24. // The name of the term.
  25. 'term_name' => 'infraspecific_taxon',
  26. // The unique ID (i.e. accession) of the term.
  27. 'term_accession' => '0000046',
  28. // Set to TRUE if the site admin is allowed to change the term
  29. // type. This will create form elements when editing the field instance
  30. // to allow the site admin to change the term settings above.
  31. 'term_fixed' => FALSE,
  32. );
  33. // The default widget for this field.
  34. public static $default_widget = 'HERE_widget';
  35. // The default formatter for this field.
  36. public static $default_formatter = 'HERE_formatter';
  37. // --------------------------------------------------------------------------
  38. // PROTECTED CLASS MEMBERS -- DO NOT OVERRIDE
  39. // --------------------------------------------------------------------------
  40. // An array containing details about the field. The format of this array
  41. // is the same as that returned by field_info_fields()
  42. protected $field;
  43. // An array containing details about an instance of the field. A field does
  44. // not have to have an instance. But if dealing with an instance (such as
  45. // when using the widgetForm, formatterSettingsForm, etc.) it should be set.
  46. protected $instance;
  47. /**
  48. * @see TripalField::elementInfo()
  49. */
  50. public function elementInfo() {
  51. $field_term = $this->getFieldTermID();
  52. return array(
  53. $field_term => array(
  54. 'operations' => array(),
  55. 'sortable' => FALSE,
  56. 'searchable' => FALSE,
  57. ),
  58. );
  59. }
  60. /**
  61. *
  62. * @see TripalField::load()
  63. */
  64. public function load($entity) {
  65. $record = $entity->chado_record;
  66. $settings = $this->field['settings'];
  67. $field_name = $this->field['field_name'];
  68. $field_type = $this->field['type'];
  69. $field_table = $this->instance['settings']['chado_table'];
  70. $field_column = $this->instance['settings']['chado_column'];
  71. // Set some defaults for the empty record.
  72. $entity->{$field_name}['und'][0] = array(
  73. 'value' => '',
  74. 'organism__type_id' => '',
  75. );
  76. if ($record->type_id) {
  77. $entity->{$field_name}['und'][0]['value'] = $record->type_id->name;
  78. $entity->{$field_name}['und'][0]['organism__type_id'] = $record->type_id->cvterm_id;
  79. }
  80. }
  81. }