You are here

protected function AdminHelp::multivalue_fieldset_create_mode in Webform CiviCRM Integration 8.5

File

src/AdminHelp.php, line 472
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 multivalue_fieldset_create_mode() {
  return '<p>' . t("Create/ Edit Mode (Default): Pre-populate the existing entry (if any) in order to allow user modifying it. If there isn't any existing entry, any value entered into the fieldset will be created as a new entry.") . '<br><br>' . t("Create Only Mode: Any value entered into the fieldset will be created as a new entry without overwriting any existing record.") . '</p>';
}