You are here

protected function AdminHelp::duplicate_case_status in Webform CiviCRM Integration 8.5

File

src/AdminHelp.php, line 389
Admin form inline-help.

Class

AdminHelp
Class AdminHelp Adding a function to this class with the same name as a field will magically add pop-up help for that field to the admin form.

Namespace

Drupal\webform_civicrm

Code

protected function duplicate_case_status() {
  return '<p>' . t('Choosing this option means a new case will always be created even when an existing case has been selected. If an existing case has been selected the data for this case will NOT be updated.') . '</p><p>' . t('Useful if you want to pre-fill a form with existing case data, allow the user to make updates and then create a new case with their updates.') . '</p><p>' . t('Note: Populate the existing case by selecting an option from the Update Existing Case drop-down or by passing "case1=[caseid]" in the url etc.') . '</p>';
}