12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- function hook_tripal_ws_value(&$items, $field, $instance) {
-
-
- if($field['type'] == 'image' and $field['module'] == 'image') {
- foreach ($items as $delta => $details) {
- if ($items[$delta] and array_key_exists('uri', $items[$delta])) {
- $items[$delta]['value']['schema:url'] = file_create_url($items[$delta]['uri']);
- }
- }
- }
- }
|