123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- class WebServicesField extends TripalField {
-
-
-
-
-
-
-
-
- public static $default_label = 'Remote Data';
-
- public static $default_description = '';
-
-
- public static $module = 'tripal_ws';
-
-
-
-
-
- public static $default_settings = [
- 'storage' => 'field_tripal_ws_storage',
-
-
-
-
-
-
- 'searchable_keys' => [],
- ];
-
-
-
-
-
-
-
- public static $default_instance_settings = [
-
- 'term_vocabulary' => 'schema',
-
- 'term_name' => 'Thing',
-
- 'term_accession' => 'Thing',
-
-
- 'term_fixed' => FALSE,
-
-
-
-
-
- 'auto_attach' => FALSE,
- ];
-
-
-
-
-
-
-
-
-
-
-
- public function load($entity) {
- }
- }
|