You are here

protected function AdminHelp::participant_status_id in Webform CiviCRM Integration 8.5

File

src/AdminHelp.php, line 208
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 participant_status_id() {
  return '<ul><li>' . t('In "Automatic" mode, status will be set to "Registered" (or "Pending" if the user chooses to "Pay Later" for events with a fee). The user will be able to cancel registration by re-visiting the form and de-selecting any events they are registered for.') . '</li><li>' . t('If a status is selected here, events will be autofilled only if the participant has that status.') . '</li><li>' . t('If this field is exposed to the webform ("User Select"), events will be autofilled only if the particiant status among the enabled options.') . '</li></ul>';
}