// Get helper instance for web forms. This will add the opening form-tag to
// the helper's render cache which is simply a small variable in the class
// BaseHelper.
-$helperInstance = WebFormHelper::createWebFormHelper($this, "resend");
+$helperInstance = WebFormHelper::createWebFormHelper($this, 'resend_link');
// Pre-fetch field data with a given registry key
$helperInstance->prefetchValueInstance('user');
if ($helperInstance->ifUserAccountUnconfirmed()) {
// Build the form for confirmation
- $helperInstance = WebFormHelper::createWebFormHelper($this, "confirm_code");
+ $helperInstance = WebFormHelper::createWebFormHelper($this, 'confirm_code');
// Add code box
$helperInstance->addFormGroup('code', "Bitte gebe hier den Bestätigungscode aus der Willkommensemail ein. Solltest du diese nicht erhalten haben, kannst du dir diesen jetzt zusenden lassen.");
kannst dir nun den Bestätigungslink erneut aussenden lassen, oder den
Bestätigungscode unten eingeben.
- <div id="resend_box">
- {?resend?}
+ <div id="resend_link_box">
+ {?resend_link?}
</div>
<div id="confirm_code_box">
if ($helperInstance->ifUserAccountUnconfirmed()) {
// Build the form for confirmation
- $helperInstance = ObjectFactory::createObjectByConfiguredName('web_form_helper', array($this, "confirm_code"));
+ $helperInstance = ObjectFactory::createObjectByConfiguredName('web_form_helper', array($this, 'confirm_code'));
// Add code box
$helperInstance->addFormGroup('code', "Bitte gebe hier den Bestätigungscode aus der Willkommensemail ein. Solltest du diese nicht erhalten haben, kannst du dir diesen jetzt zusenden lassen.");
kannst dir nun den Bestätigungslink erneut aussenden lassen, oder den
Bestätigungscode unten eingeben.
- <div id="resend_box">
+ <div id="resend_link_box">
{?resend_link?}
</div>