additional_fields['id'] = 'id'; } function option_definition() { $options = parent::option_definition(); $options['link_to_civicrm_contact'] = array('default' => FALSE); return $options; } /** * Provide link to node option */ function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); $form['link_to_civicrm_contact'] = array( '#title' => t('Link this field to its CiviCRM Contact'), '#type' => 'checkbox', '#default_value' => !empty($this->options['link_to_civicrm_contact']), ); } /** * Render whatever the data is as a link to the node. * * Data should be made XSS safe prior to calling this function. */ function render_link($data, $values) { if (!empty($this->options['link_to_civicrm_contact']) && user_access('access CiviCRM') && $data !== NULL && $data !== '') { return civicrm_views_href($data, 'civicrm/contact/view', "reset=1&cid={$values->{$this->aliases['id']}}" ); } else { return $data; } } function render($values) { return $this->render_link(check_plain($values->{$this->field_alias}), $values); } }