tripal_ds.field_formatter.inc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * Implements hook_field_group_formatter_info().
  4. */
  5. function tripal_ds_field_group_formatter_info() {
  6. return array(
  7. 'form' => array(
  8. 'tripalpane' => array(
  9. 'label' => t('Tripal Pane'),
  10. 'description' => t('This fieldgroup renders the inner content in a Tripal Pane with the title as legend.'),
  11. 'instance_settings' => array('description' => '', 'classes' => '', 'id' => ''),
  12. ),
  13. ),
  14. 'display' => array(
  15. 'tripalpane' => array(
  16. 'label' => t('Tripal Pane'),
  17. 'description' => t('This fieldgroup renders the inner content in a Tripal Pane with the title as legend.'),
  18. 'instance_settings' => array('description' => '', 'classes' => '', 'id' => ''),
  19. ),
  20. ),
  21. );
  22. }
  23. /**
  24. * Implements hook_field_group_format_settings().
  25. * If the group has no format settings, default ones will be added.
  26. * @params Object $group The group object.
  27. * @return Array $form The form element for the format settings.
  28. */
  29. function tripal_ds_field_group_format_settings($group) {
  30. $form = array();
  31. // Add instance_settings.
  32. switch ($group->format_type) {
  33. case 'tripalpane':
  34. $form['label']['#description'] = t('Please enter a label for collapsible elements');
  35. break;
  36. }
  37. return $form;
  38. }
  39. /*
  40. * Implements field_group_pre_render_<format-type>.
  41. * Format type: Tripalpane.
  42. *
  43. * @param $element The field group form element.
  44. * @param $group The Field group object prepared for pre_render.
  45. * @param $form The root element or form.
  46. */
  47. function tripal_ds_field_group_pre_render(&$element, $group, &$form) {
  48. $group_name = $group->group_name;
  49. //watchdog('debug', '<pre>$group->description: '. print_r($group->description, TRUE) .'</pre>');
  50. watchdog('debug', '<pre>$$group->format_settings: '. print_r($group->format_settings['instance_settings'], TRUE) .'</pre>');
  51. switch ($group->format_type) {
  52. case 'tripalpane':
  53. $element['#prefix'] = '<div class="tripal_pane-fieldset-'.$group_name.' '.$group_name.' tripal_pane"> <span class="field-group-format-title">' . check_plain(t($group->label)) . '</span>';
  54. if (!empty($group->description)) {
  55. $element['#prefix'] .= '<div class="description">' . $group->description . '</div>';
  56. }
  57. $element['#suffix'] = '</div>';
  58. break;
  59. }
  60. }