remote__data_formatter.inc 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <?php
  2. class remote__data_formatter extends WebServicesFieldFormatter {
  3. // The default label for this field.
  4. public static $default_label = 'Remote Data';
  5. // The list of field types for which this formatter is appropriate.
  6. public static $field_types = array('remote__data');
  7. // The list of default settings for this formatter.
  8. public static $default_settings = array(
  9. 'setting1' => 'default_value',
  10. );
  11. /**
  12. * Provides the field's setting form.
  13. *
  14. * This function corresponds to the hook_field_formatter_settings_form()
  15. * function of the Drupal Field API.
  16. *
  17. * The settings form appears on the 'Manage Display' page of the content
  18. * type administration page. This function provides the form that will
  19. * appear on that page.
  20. *
  21. * To add a validate function, please create a static function in the
  22. * implementing class, and indicate that this function should be used
  23. * in the form array that is returned by this function.
  24. *
  25. * This form will not be displayed if the formatter_settings_summary()
  26. * function does not return anything.
  27. *
  28. * param $field
  29. * The field structure being configured.
  30. * param $instance
  31. * The instance structure being configured.
  32. * param $view_mode
  33. * The view mode being configured.
  34. * param $form
  35. * The (entire) configuration form array, which will usually have no use
  36. * here. Typically for reference only.
  37. * param $form_state
  38. * The form state of the (entire) configuration form.
  39. *
  40. * @return
  41. * A Drupal Form array containing the settings form for this field.
  42. */
  43. public function settingsForm($view_mode, $form, &$form_state) {
  44. }
  45. /**
  46. * Provides the display for a field
  47. *
  48. * This function corresponds to the hook_field_formatter_view()
  49. * function of the Drupal Field API.
  50. *
  51. * This function provides the display for a field when it is viewed on
  52. * the web page. The content returned by the formatter should only include
  53. * what is present in the $items[$delta]['values] array. This way, the
  54. * contents that are displayed on the page, via webservices and downloaded
  55. * into a CSV file will always be identical. The view need not show all
  56. * of the data in the 'values' array.
  57. *
  58. * @param $element
  59. * @param $entity_type
  60. * @param $entity
  61. * @param $langcode
  62. * @param $items
  63. * @param $display
  64. *
  65. * @return
  66. * An element array compatible with that returned by the
  67. * hook_field_formatter_view() function.
  68. */
  69. public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
  70. // Get the settings
  71. $settings = $display['settings'];
  72. $field_name = $this->field['field_name'];
  73. // Get the site name where the data came from.
  74. $site_id_ws = $this->instance['settings']['data_info']['remote_site'];
  75. $site = db_select('tripal_sites', 'ts')
  76. ->fields('ts', array('name', 'url'))
  77. ->condition('ts.id', $site_id_ws)
  78. ->execute()
  79. ->fetchObject();
  80. $content = '';
  81. if (count($items) > 0) {
  82. $remote_entity_label = $items[0]['remote_entity']['label'];
  83. $remote_entity_page = $items[0]['remote_entity']['ItemPage'];
  84. $content = t('The data below about !label was obtained from the !site database.',
  85. array('!label' => l($remote_entity_label, $remote_entity_page),
  86. '!site' => l($site->name, $site->url)));
  87. }
  88. else {
  89. $content = t('There is no data about this record from the !site database.',
  90. array('!site' => l($site->name, $site->url)));
  91. }
  92. foreach ($items as $index => $item) {
  93. $value = $item['value'];
  94. if (is_array($value)) {
  95. $headers = array('');
  96. // If this is a collection then handle it as a list of members.
  97. if (array_key_exists('members', $value)) {
  98. foreach ($value['members'] as $subvalue) {
  99. $content .= $this->createTable($subvalue);
  100. }
  101. }
  102. else {
  103. $content .= $this->createTable($subvalue);
  104. }
  105. }
  106. else {
  107. $content .= $this->createDL($value);
  108. }
  109. }
  110. // Return the content for this field.
  111. $element[0] = array(
  112. '#type' => 'markup',
  113. '#markup' => $content,
  114. );
  115. }
  116. /**
  117. * A recursive function for displaying an item in a table.
  118. *
  119. * @param $item
  120. * An item from the $items array passed to the view() function.
  121. * @return
  122. * An HTML formatted Table.
  123. */
  124. private function createTable($item, &$pkey = '', &$rows = array(), $depth = 0) {
  125. foreach ($item as $key => $value) {
  126. // Skip JSON-LD keys.
  127. if (preg_match('/^\@/', $key)) {
  128. continue;
  129. }
  130. $key = preg_replace('/_/', ' ', $key);
  131. $key = ucwords($key);
  132. if ($pkey) {
  133. $key = $pkey . ' ' . $key;
  134. }
  135. if (is_array($value)) {
  136. $this->createTable($value, $key, $rows, $depth + 1);
  137. }
  138. else {
  139. $rows[] = array(
  140. 'data'=> array(
  141. $key,
  142. $value
  143. ),
  144. 'no_striping' => TRUE,
  145. );
  146. }
  147. }
  148. if ($depth == 0) {
  149. $headers = array('Data Type', 'Value');
  150. return theme_table(array(
  151. 'header' => $headers,
  152. 'rows' => $rows,
  153. 'attributes' => array(
  154. 'class' => 'tripal-remote--data-field-table',
  155. ),
  156. 'sticky' => FALSE,
  157. 'caption' => "",
  158. 'colgroups' => array(),
  159. 'empty' => 'There are no results.',
  160. ));
  161. }
  162. }
  163. /**
  164. * A recursive function for creating an HTML dictionary list from
  165. * the results for the item provided.
  166. *
  167. * @param $item
  168. * An item from the $items array passed to the view() function.
  169. * @return
  170. * An HTML formatted DL.
  171. */
  172. private function createDL($item, &$pkey = '', &$content= '', $depth = 0) {
  173. if ($depth == 0) {
  174. $content = '<dl class="tripal-remote--data-field-dl">';
  175. }
  176. foreach ($item as $key => $value) {
  177. // Skip JSON-LD keys.
  178. if (preg_match('/^\@/', $key)) {
  179. continue;
  180. }
  181. $key = preg_replace('/_/', ' ', $key);
  182. $key = ucwords($key);
  183. if ($pkey) {
  184. $key = $pkey . ' ' . $key;
  185. }
  186. if (is_array($value)) {
  187. $this->createDL($value, $key, $content, $depth + 1);
  188. }
  189. else {
  190. $content .= '<dt>' . $key . '&nbsp;:&nbsp;</dt><dd>' . $value . '</dd>';
  191. }
  192. }
  193. if ($depth == 0) {
  194. $content .= '</dl>';
  195. return $content;
  196. }
  197. }
  198. /**
  199. * A recursive function for creating an HTML dictionary list from
  200. * the results for the item provided.
  201. *
  202. * @param $item
  203. * An item from the $items array passed to the view() function.
  204. * @return
  205. * An HTML formatted DL.
  206. */
  207. private function createNestedDL($item) {
  208. $content = '<dl>';
  209. foreach ($item as $key => $value) {
  210. // Skip JSON-LD keys.
  211. if (preg_match('/^\@/', $key)) {
  212. continue;
  213. }
  214. $key = preg_replace('/_/', ' ', $key);
  215. $key = ucwords($key);
  216. if (is_array($value)) {
  217. $value = $this->createDL($value);
  218. }
  219. $content .= '<dt>' . $key . '</dt><dd>' . $value . '</dd>';
  220. }
  221. $content .= '</dl>';
  222. return $content;
  223. }
  224. /**
  225. * Provides a summary of the formatter settings.
  226. *
  227. * This function corresponds to the hook_field_formatter_settings_summary()
  228. * function of the Drupal Field API.
  229. *
  230. * On the 'Manage Display' page of the content type administration page,
  231. * fields are allowed to provide a settings form. This settings form can
  232. * be used to allow the site admin to define how the field should be
  233. * formatted. The settings are then available for the formatter()
  234. * function of this class. This function provides a text-based description
  235. * of the settings for the site developer to see. It appears on the manage
  236. * display page inline with the field. A field must always return a
  237. * value in this function if the settings form gear button is to appear.
  238. *
  239. * See the hook_field_formatter_settings_summary() function for more
  240. * information.
  241. *
  242. * @param $field
  243. * @param $instance
  244. * @param $view_mode
  245. *
  246. * @return string
  247. * A string that provides a very brief summary of the field settings
  248. * to the user.
  249. *
  250. */
  251. public function settingsSummary($view_mode) {
  252. }
  253. }