123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- class chado_linker__featureloc extends TripalField {
-
-
-
-
-
-
-
-
-
-
-
-
-
- public static $term = 'data:2012';
-
- public static $label = 'Sequence Coordinate';
-
- public static $description = 'Locations on reference sequences where the feature is located.';
-
-
-
- public static $settings = array(
- 'chado_table' => '',
- 'chado_column' => '',
- 'base_table' => '',
- );
-
-
-
-
- public static $instance_settings = array();
-
-
- public static $storage = 'tripal_no_storage';
-
- public static $default_widget = 'chado_linker__featureloc_widget';
-
- public static $default_formatter = 'chado_linker__featureloc_formatter';
-
-
-
-
-
- protected $field;
-
-
-
- protected $instance;
-
- public function validate($entity_type, $entity, $field, $items, &$errors) {
- }
-
- public function load($entity, $details = array()) {
- }
-
- public function settingsForm($has_data) {
- }
-
- public function settingsFormValidate($form, &$form_state) {
- }
-
- public function instanceSettingsForm() {
- }
-
- public function instanceSettingsFormValidate($form, &$form_state) {
- }
- }
|