12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * Implements hook_field_group_formatter_info().
- */
- function tripal_ds_field_group_formatter_info() {
- return array(
- 'form' => array(
- 'tripalpane' => array(
- 'label' => t('Tripal Pane'),
- 'description' => t('This fieldgroup renders the inner content in a Tripal Pane with the title as legend.'),
- 'instance_settings' => array('description' => '', 'classes' => '', 'id' => ''),
- ),
- ),
- 'display' => array(
- 'tripalpane' => array(
- 'label' => t('Tripal Pane'),
- 'description' => t('This fieldgroup renders the inner content in a Tripal Pane with the title as legend.'),
- 'instance_settings' => array('description' => '', 'classes' => '', 'id' => ''),
- ),
- ),
- );
- }
- /**
- * Implements hook_field_group_format_settings().
- * If the group has no format settings, default ones will be added.
- * @params Object $group The group object.
- * @return Array $form The form element for the format settings.
- */
- function tripal_ds_field_group_format_settings($group) {
- $form = array();
- // Add instance_settings.
- switch ($group->format_type) {
- case 'tripalpane':
- $form['label']['#description'] = t('Please enter a label for collapsible elements');
- break;
- }
- return $form;
- }
- /*
- * Implements field_group_pre_render_<format-type>.
- * Format type: Tripalpane.
- *
- * @param $element The field group form element.
- * @param $group The Field group object prepared for pre_render.
- * @param $form The root element or form.
- */
- function tripal_ds_field_group_pre_render(&$element, $group, &$form) {
- $group_name = $group->group_name;
- //watchdog('debug', '<pre>$group->description: '. print_r($group->description, TRUE) .'</pre>');
- watchdog('debug', '<pre>$$group->format_settings: '. print_r($group->format_settings['instance_settings'], TRUE) .'</pre>');
- switch ($group->format_type) {
- case 'tripalpane':
- $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>';
- if (!empty($group->description)) {
- $element['#prefix'] .= '<div class="description">' . $group->description . '</div>';
- }
- $element['#suffix'] = '</div>';
- break;
- }
- }
|