From 7931d91f2b4ec7b40f75125788b53770e3f549bc Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Mon, 22 Jan 2018 14:37:03 -0500 Subject: [PATCH] Fixed member settings tabs missing when "Settings" => "Registrations" is selected and replacing some static text with configurable terms. --- deactivate.php | 5 +- lib/paymentProcessors/PayPal/test.php | 4 +- .../settings/registrationsPaymentCode.php | 3 - setup/adminTabs.php | 2 +- views/admin/management/registrations.html | 6 +- views/admin/management/regterms.html | 544 +++++++++--------- .../admin/registrations/accountDashboard.html | 4 +- views/admin/registrations/accountEdit.html | 14 +- views/admin/registrations/accountHeader.html | 2 +- views/admin/registrations/eventDashboard.html | 76 +-- views/admin/registrations/eventEdit.html | 41 +- .../registrations/eventEditCustomFields.html | 12 +- .../admin/registrations/eventEditLevels.html | 18 +- .../registrations/eventEditNotification.html | 12 +- views/admin/registrations/eventHeader.html | 4 +- .../registrations/eventPaymentCodes.html | 36 +- views/admin/registrations/eventSubTabs.html | 8 +- .../admin/registrations/eventsDashboard.html | 14 +- .../registrationEventDeleted.html | 2 +- views/admin/registrations/requestEdit.html | 2 +- .../registrations/requestsDashboard.html | 4 +- ...DING_DELETE_registrationsPaymentCode.html} | 34 +- views/admin/settings/registrationsMisc.html | 16 +- views/front/registrations/account.html | 2 +- views/front/registrations/accountHeader.html | 4 +- views/front/registrations/cart.html | 12 +- views/front/registrations/cartLinkWidget.html | 6 +- views/front/registrations/cartSummary.html | 2 +- views/front/registrations/checkout.html | 14 +- views/front/registrations/forgot.html | 4 +- views/front/registrations/header.html | 2 +- views/front/registrations/list.html | 4 +- views/front/registrations/login.html | 2 +- views/front/registrations/register.html | 6 +- views/front/registrations/registration.html | 4 +- views/front/registrations/summary.html | 8 +- views/front/registrations/summaryStore.html | 2 +- 37 files changed, 476 insertions(+), 459 deletions(-) rename views/admin/settings/{registrationsPaymentCode.html => PENDING_DELETE_registrationsPaymentCode.html} (88%) diff --git a/deactivate.php b/deactivate.php index f077e2c..bb40add 100644 --- a/deactivate.php +++ b/deactivate.php @@ -48,15 +48,18 @@ class glmMembersRegistrationsPluginDeactivate */ public function __construct ($wpdb, $config) { - +/* // Save WordPress Database object $this->wpdb = $wpdb; // Save plugin configuration object $this->config = $config; +*/ // Delete our version from WordPress Options delete_option('glmMembersRegistrationsPluginVersion'); + + // Nothing else for now. } } diff --git a/lib/paymentProcessors/PayPal/test.php b/lib/paymentProcessors/PayPal/test.php index 30ad3e0..6ee2f98 100755 --- a/lib/paymentProcessors/PayPal/test.php +++ b/lib/paymentProcessors/PayPal/test.php @@ -61,7 +61,7 @@ switch ($_REQUEST['PayPalAction']) { $_SESSION['payerID'] = $_REQUEST['PayerID']; // NEED TO FILTER THIS FOR PRODUCTION // Create PayPal object with existing access object from the session - $PayPal = new PayPalPaymentGateway($account, $_SESSION['access'], $_SESSION['trans']); + $PayPal = new PaymentGateway($account, $_SESSION['access'], $_SESSION['trans']); // Execute the PayPal payment $r = $PayPal->executePayment($_SESSION['payerID']); @@ -81,7 +81,7 @@ switch ($_REQUEST['PayPalAction']) { } // Create the PayPal object (note no previous access object) -$PayPal = new PayPalPaymentGateway($account, false, false); +$PayPal = new PaymentGateway($account, false, false); // Was there an error? if (!$PayPal->status) { diff --git a/models/admin/settings/registrationsPaymentCode.php b/models/admin/settings/registrationsPaymentCode.php index 5c7ffb9..2983ccf 100644 --- a/models/admin/settings/registrationsPaymentCode.php +++ b/models/admin/settings/registrationsPaymentCode.php @@ -107,8 +107,6 @@ class GlmMembersAdmin_settings_registrationsPaymentCode extends GlmDataRegistrat $global_paycode = $this->config['pay_code_ref_type_numb']['Global']; - $enable_members = $this->config['settings']['enable_members']; - // Check if a category ID is supplied $id = 0; if ( isset( $_REQUEST['id'] ) ) { @@ -170,7 +168,6 @@ class GlmMembersAdmin_settings_registrationsPaymentCode extends GlmDataRegistrat // Compile template data $templateData = array( - 'enable_members' => $enable_members, 'havePaymentCode' => $havePaymentCode, 'payment_codes' => $payment_codes, 'groups' => null, diff --git a/setup/adminTabs.php b/setup/adminTabs.php index 2533501..0b9d7ea 100644 --- a/setup/adminTabs.php +++ b/setup/adminTabs.php @@ -36,7 +36,7 @@ if (current_user_can('glm_members_members')) { array( 'text' => 'Registrations', 'menu' => 'settings', - 'action' => 'registrationsPaymentCode' + 'action' => 'registrationsMisc' ), ); diff --git a/views/admin/management/registrations.html b/views/admin/management/registrations.html index f809ef7..9039c0b 100644 --- a/views/admin/management/registrations.html +++ b/views/admin/management/registrations.html @@ -24,12 +24,12 @@ {$terms.reg_term_registrations_name} Page Permalink Name: -
Use only the page name at the end of the permalink for the registrations detail page. +
Use only the page name at the end of the permalink for the {$terms.reg_term_registration_plur} detail page. -

Organization Processing Registrations

+

Organization Processing {$terms.reg_term_registration_plur_cap}

Organization Name: @@ -244,7 +244,7 @@ - Billing Info used for Comp Code: + Billing Info used for {$terms.reg_term_payment_code_cap}: {foreach from=$regSettings.fieldData.reg_bill_info_req_comp_code.bitmap item=v} {$v.name} diff --git a/views/admin/management/regterms.html b/views/admin/management/regterms.html index 5d98255..931d18c 100644 --- a/views/admin/management/regterms.html +++ b/views/admin/management/regterms.html @@ -20,7 +20,7 @@ - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + +
Application Title:Application Title: {if $termSettings.fieldFail.reg_term_registrations_name}

{$termSettings.fieldFail.reg_term_registrations_name}

{/if} @@ -28,287 +28,302 @@
Registration: - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_registration}

{$termSettings.fieldFail.reg_term_registration}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_registration_cap}

{$termSettings.fieldFail.reg_term_registration_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_registration_plur}

{$termSettings.fieldFail.reg_term_registration_plur}

{/if} -
Plural Capitalized - - {if $termSettings.fieldFail.reg_term_registration_plur_cap}

{$termSettings.fieldFail.reg_term_registration_plur_cap}

{/if} -
-
Register: - - - - - - - - - - - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_register}

{$termSettings.fieldFail.reg_term_register}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_register_cap}

{$termSettings.fieldFail.reg_term_register_cap}

{/if} -
Registers: - - {if $termSettings.fieldFail.reg_term_registers}

{$termSettings.fieldFail.reg_term_registers}

{/if} -
Registering: - - {if $termSettings.fieldFail.reg_term_registering}

{$termSettings.fieldFail.reg_term_registering}

{/if} -
Registering Capitalized: - - {if $termSettings.fieldFail.reg_term_registering_cap}

{$termSettings.fieldFail.reg_term_registering_cap}

{/if} -
Registered: - - {if $termSettings.fieldFail.reg_term_registered}

{$termSettings.fieldFail.reg_term_registered}

{/if} -
Registered Capitalized: - - {if $termSettings.fieldFail.reg_term_registered_cap}

{$termSettings.fieldFail.reg_term_registered_cap}

{/if} -
-
Normal: + + {if $termSettings.fieldFail.reg_term_registration}

{$termSettings.fieldFail.reg_term_registration}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_registration_cap}

{$termSettings.fieldFail.reg_term_registration_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_registration_plur}

{$termSettings.fieldFail.reg_term_registration_plur}

{/if} +
 Plural Capitalized + + {if $termSettings.fieldFail.reg_term_registration_plur_cap}

{$termSettings.fieldFail.reg_term_registration_plur_cap}

{/if} +
Register:Normal: + + {if $termSettings.fieldFail.reg_term_register}

{$termSettings.fieldFail.reg_term_register}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_register_cap}

{$termSettings.fieldFail.reg_term_register_cap}

{/if} +
 Registers: + + {if $termSettings.fieldFail.reg_term_registers}

{$termSettings.fieldFail.reg_term_registers}

{/if} +
 Registering: + + {if $termSettings.fieldFail.reg_term_registering}

{$termSettings.fieldFail.reg_term_registering}

{/if} +
 Registering Capitalized: + + {if $termSettings.fieldFail.reg_term_registering_cap}

{$termSettings.fieldFail.reg_term_registering_cap}

{/if} +
 Registered: + + {if $termSettings.fieldFail.reg_term_registered}

{$termSettings.fieldFail.reg_term_registered}

{/if} +
 Registered Capitalized: + + {if $termSettings.fieldFail.reg_term_registered_cap}

{$termSettings.fieldFail.reg_term_registered_cap}

{/if} +
Attendee: - - - - - - - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_attendee}

{$termSettings.fieldFail.reg_term_attendee}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_attendee_cap}

{$termSettings.fieldFail.reg_term_attendee_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_attendee_plur}

{$termSettings.fieldFail.reg_term_attendee_plur}

{/if} -
Plural Capitalized: - - {if $termSettings.fieldFail.reg_term_attendee_plur_cap}

{$termSettings.fieldFail.reg_term_attendee_plur_cap}

{/if} -
Attending: - - {if $termSettings.fieldFail.reg_term_attending}

{$termSettings.fieldFail.reg_term_attending}

{/if} -
Attended: - - {if $termSettings.fieldFail.reg_term_attended}

{$termSettings.fieldFail.reg_term_attended}

{/if} -
+
Normal: + + {if $termSettings.fieldFail.reg_term_attendee}

{$termSettings.fieldFail.reg_term_attendee}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_attendee_cap}

{$termSettings.fieldFail.reg_term_attendee_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_attendee_plur}

{$termSettings.fieldFail.reg_term_attendee_plur}

{/if} +
 Plural Capitalized: + + {if $termSettings.fieldFail.reg_term_attendee_plur_cap}

{$termSettings.fieldFail.reg_term_attendee_plur_cap}

{/if} +
 Attending: + + {if $termSettings.fieldFail.reg_term_attending}

{$termSettings.fieldFail.reg_term_attending}

{/if} +
 Attended: + + {if $termSettings.fieldFail.reg_term_attended}

{$termSettings.fieldFail.reg_term_attended}

{/if}
Registered User: - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_registered_user}

{$termSettings.fieldFail.reg_term_registered_user}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_registered_user_cap}

{$termSettings.fieldFail.reg_term_registered_user_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_registered_user_plur}

{$termSettings.fieldFail.reg_term_registered_user_plur}

{/if} -
Plural Capitalized: - - {if $termSettings.fieldFail.reg_term_registered_user_plur_cap}

{$termSettings.fieldFail.reg_term_registered_user_plur_cap}

{/if} -
-
Normal: + + {if $termSettings.fieldFail.reg_term_registered_user}

{$termSettings.fieldFail.reg_term_registered_user}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_registered_user_cap}

{$termSettings.fieldFail.reg_term_registered_user_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_registered_user_plur}

{$termSettings.fieldFail.reg_term_registered_user_plur}

{/if} +
 Plural Capitalized: + + {if $termSettings.fieldFail.reg_term_registered_user_plur_cap}

{$termSettings.fieldFail.reg_term_registered_user_plur_cap}

{/if} +
ID: - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_id}

{$termSettings.fieldFail.reg_term_id}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_id_cap}

{$termSettings.fieldFail.reg_term_id_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_id_plur}

{$termSettings.fieldFail.reg_term_id_plur}

{/if} -
Plural Capitalized: - - {if $termSettings.fieldFail.reg_term_id_plur_cap}

{$termSettings.fieldFail.reg_term_id_plur_cap}

{/if} -
+
Normal: + + {if $termSettings.fieldFail.reg_term_id}

{$termSettings.fieldFail.reg_term_id}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_id_cap}

{$termSettings.fieldFail.reg_term_id_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_id_plur}

{$termSettings.fieldFail.reg_term_id_plur}

{/if} +
 Plural Capitalized: + + {if $termSettings.fieldFail.reg_term_id_plur_cap}

{$termSettings.fieldFail.reg_term_id_plur_cap}

{/if}
Password: - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_password}

{$termSettings.fieldFail.reg_term_password}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_password_cap}

{$termSettings.fieldFail.reg_term_password_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_password_plur}

{$termSettings.fieldFail.reg_term_password_plur}

{/if} -
Plural Capitalized: - - {if $termSettings.fieldFail.reg_term_password_plur_cap}

{$termSettings.fieldFail.reg_term_password_plur_cap}

{/if} -
+
Normal: + + {if $termSettings.fieldFail.reg_term_password}

{$termSettings.fieldFail.reg_term_password}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_password_cap}

{$termSettings.fieldFail.reg_term_password_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_password_plur}

{$termSettings.fieldFail.reg_term_password_plur}

{/if} +
 Plural Capitalized: + + {if $termSettings.fieldFail.reg_term_password_plur_cap}

{$termSettings.fieldFail.reg_term_password_plur_cap}

{/if}
Instructor: - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_instructor}

{$termSettings.fieldFail.reg_term_instructor}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_instructor_cap}

{$termSettings.fieldFail.reg_term_instructor_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_instructor_plur}

{$termSettings.fieldFail.reg_term_instructor_plur}

{/if} -
Plural Capitalized: - - {if $termSettings.fieldFail.reg_term_instructor_plur_cap}

{$termSettings.fieldFail.reg_term_instructor_plur_cap}

{/if} -
-
Comp Code: - - - - - - - - - - - - - -
Normal: - - {if $termSettings.fieldFail.reg_term_payment_code}

{$termSettings.fieldFail.reg_term_payment_code}

{/if} -
Capitalized: - - {if $termSettings.fieldFail.reg_term_payment_code_cap}

{$termSettings.fieldFail.reg_term_payment_code_cap}

{/if} -
Plural: - - {if $termSettings.fieldFail.reg_term_payment_code_plur}

{$termSettings.fieldFail.reg_term_payment_code_plur}

{/if} -
Plural Capitalized: - - {if $termSettings.fieldFail.reg_term_payment_code_plur_cap}

{$termSettings.fieldFail.reg_term_payment_code_plur_cap}

{/if} -
+
Normal: + + {if $termSettings.fieldFail.reg_term_instructor}

{$termSettings.fieldFail.reg_term_instructor}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_instructor_cap}

{$termSettings.fieldFail.reg_term_instructor_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_instructor_plur}

{$termSettings.fieldFail.reg_term_instructor_plur}

{/if} +
 Plural Capitalized: + + {if $termSettings.fieldFail.reg_term_instructor_plur_cap}

{$termSettings.fieldFail.reg_term_instructor_plur_cap}

{/if} +
{$terms.reg_term_payment_code_cap}:Normal: + + {if $termSettings.fieldFail.reg_term_payment_code}

{$termSettings.fieldFail.reg_term_payment_code}

{/if} +
 Capitalized: + + {if $termSettings.fieldFail.reg_term_payment_code_cap}

{$termSettings.fieldFail.reg_term_payment_code_cap}

{/if} +
 Plural: + + {if $termSettings.fieldFail.reg_term_payment_code_plur}

{$termSettings.fieldFail.reg_term_payment_code_plur}

{/if} +
 Plural Capitalized: + + {if $termSettings.fieldFail.reg_term_payment_code_plur_cap}

{$termSettings.fieldFail.reg_term_payment_code_plur_cap}

{/if}
Other Terms: Contact Information @@ -316,7 +331,8 @@
Registration Button: {$terms.reg_term_registration_button}: {if $termSettings.fieldFail.reg_term_registration_button}

{$termSettings.fieldFail.reg_term_registration_button}

{/if} diff --git a/views/admin/registrations/accountDashboard.html b/views/admin/registrations/accountDashboard.html index 643ba03..700cab8 100644 --- a/views/admin/registrations/accountDashboard.html +++ b/views/admin/registrations/accountDashboard.html @@ -62,7 +62,7 @@
-

Registration Requests

+

{$terms.reg_term_registration_cap} Requests

{assign var="i" value="0"} @@ -97,7 +97,7 @@
-

Registered for Events

+

{$terms.reg_term_registered} for Events

{assign var="i" value="0"}
diff --git a/views/admin/registrations/accountEdit.html b/views/admin/registrations/accountEdit.html index 4d93717..d794ae0 100644 --- a/views/admin/registrations/accountEdit.html +++ b/views/admin/registrations/accountEdit.html @@ -52,19 +52,19 @@ - + diff --git a/views/admin/registrations/accountHeader.html b/views/admin/registrations/accountHeader.html index 45b55e1..e9dbcee 100644 --- a/views/admin/registrations/accountHeader.html +++ b/views/admin/registrations/accountHeader.html @@ -1,5 +1,5 @@
-

Event Registrations

+

Event {$terms.reg_term_registration_plur_cap}

Login Password:Login {$terms.reg_term_password_cap}: - +
{if $option == 'create'} - Save this password. -
A randomly generated password has been supplied. You may change this as desired. - There is no way to view a password once it's set. However, a user may recover a password using their + Save this {$terms.reg_term_password}. +
A randomly generated {$terms.reg_term_password} has been supplied. You may change this as desired. + There is no way to view a {$terms.reg_term_password} once it's set. However, a user may recover a {$terms.reg_term_password} using their Email address at the login page. {else} - NOTE: Enter a password here only if you need to change it. + NOTE: Enter a {$terms.reg_term_password} here only if you need to change it. {/if} - The password must be at least 8 characters and include at least one number, one letter, and at least one + The {$terms.reg_term_password} must be at least 8 characters and include at least one number, one letter, and at least one special character. (# . - _ , $ % & !) {if $account.fieldFail.password}

{$account.fieldFail.password}

{/if}
{foreach $regEvent.reg_time as $rt} {if !$regEvent.time_specific.value && $rt.non_time_specific.value} - + {if $rt.attendee_max == 0} - + {/if} - - + - + {/if} {/foreach}

Edit attendee availability here for this event.

Edit {$terms.reg_term_attendee} availability here for this event.

Unlimited registration - Set maximum attendees quantity below to limit registrations.
Unlimited {$terms.reg_term_registration} - Set maximum {$terms.reg_term_attendee_plur} quantity below to limit {$terms.reg_term_registration_plur}.
Limited availability for this event - the below numbers are for all days.
Maximum Attendees: +
Maximum {$terms.reg_term_attendee_plur_cap}:
Upate
Registered Attendees:{$rt.attendee_count}
{$terms.reg_term_registered_cap} {$terms.reg_term_attendee_plur_cap}:{$rt.attendee_count}
Pending in Carts:{$rt.attendees_pending}
Available for Registration:{$rt.attendees_available}
Available for {$terms.reg_term_registration_cap}:{$rt.attendees_available}
{if $regEvent.time_specific.value} -

Edit attendee availability for a specific date/time by clicking event time in the calendar below.

+

Edit {$terms.reg_term_attendee} availability for a specific date/time by clicking event time in the calendar below.

Availability guide: (limit)-(registered)-(pending)-(available)

{/if} @@ -238,23 +238,23 @@

Did not find selected event.

{/if} -
+
{if $regEvent.time_specific.value} - + {/if} {if $regEvent.time_specific.value} - - + + - + {else} - + {/if} - + - + - + - + - + - + - + - +
Active:
All Day:
Track Attendees:
Track {$terms.reg_term_attendee_plur_cap}:
Start Time:
End Time:
Maximum Attendees: 0 = Unlimited
Registered Attendees:
Maximum {$terms.reg_term_attendee_plur_cap}: 0 = Unlimited
{$terms.reg_term_registered_cap} {$terms.reg_term_attendee_plur_cap}:
Pending in Carts:
Available for Registration:
Available for {$terms.reg_term_registration_cap}:
Use form above calendar to adjust attendee availability.
Use form above calendar to adjust {$terms.reg_term_attendee} availability.
Upate
diff --git a/views/admin/registrations/eventEdit.html b/views/admin/registrations/eventEdit.html index ef1e271..ed56f98 100644 --- a/views/admin/registrations/eventEdit.html +++ b/views/admin/registrations/eventEdit.html @@ -2,9 +2,9 @@ {include file='admin/registrations/eventSubTabs.html'}

- {if $regEventUpdated}Registration Event Updated{/if} - {if $regEventUpdateError}Registration Event Update Error{/if} - {if $regEventAdded}Registration Event Added{/if} + {if $regEventUpdated}{$terms.reg_term_registration_cap} Event Updated{/if} + {if $regEventUpdateError}{$terms.reg_term_registration_cap} Event Update Error{/if} + {if $regEventAdded}{$terms.reg_term_registration_cap} Event Added{/if}

(Items in red are required)

@@ -23,7 +23,7 @@
Event Registration Code:Event {$terms.reg_term_registration_cap} Code: {if $regEvent.fieldFail.event_code}

{$regEvent.fieldFail.event_code}

{/if}
@@ -38,35 +38,34 @@
Registrations Active:{$terms.reg_term_registration_plur_cap} Active: - Permits users to register for events on the front-end + Permits users to {$terms.reg_term_register} for events on the front-end {if $regEvent.fieldFail.active}

{$regEvent.fieldFail.active}

{/if}
Admin Active: - Permits admin to enter registrations for this event event when -"Registrations Active" is not set + Permits admin to enter registrations for this event event when "{$terms.reg_term_registration_plur_cap} Active" is not set {if $regEvent.fieldFail.admin_active}

{$regEvent.fieldFail.admin_active}

{/if}
Date/Time Specific Registrations:Date/Time Specific {$terms.reg_term_registration_plur_cap}: - Check this box for events where registrations are for specific dates and times. + Check this box for events where {$terms.reg_term_registration_plur} are for specific dates and times. {if $regEvent.fieldFail.time_specific}

{$regEvent.fieldFail.time_specific}

{/if}
Attendees Hold Time (minutes):{$terms.reg_term_attendee_plur_cap} Hold Time (minutes): - When an attendee is added to a registration request, the system will hold that attendee "slot" for this number of minutes - before releasing it for others to register. After the attendee slot is released, the slot will be requested again each + When an {$terms.reg_term_attendee} is added to a {$terms.reg_term_registration} request, the system will hold that {$terms.reg_term_attendee} "slot" for this number of minutes + before releasing it for others to {$terms.reg_term_register}. After the {$terms.reg_term_attendee} slot is released, the slot will be requested again each time the selection, cart, or checkout pages are loaded. If there is a slot available at that time, it will again be held for this amount of time.
@@ -76,23 +75,23 @@
Cart Hold (days): - If the user has registrations entered but has not yet checked out, their "cart" will be maintained for this number of days. - After that time, the card will be deleted. If a user has established a registrations account (entered registrations or - have been registered before, the user will be able log in and continue with the cart up to this number of days.
+ If the user has {$terms.reg_term_registration_plur} entered but has not yet checked out, their "cart" will be maintained for this number of days. + After that time, the card will be deleted. If a user has established a {$terms.reg_term_registration_plur} account (entered {$terms.reg_term_registration_plur} or + have been {$terms.reg_term_registered} before, the user will be able log in and continue with the cart up to this number of days.
{if $regEvent.fieldFail.cart_hold_days}

{$regEvent.fieldFail.cart_hold_days}

{/if}
End of Registration:End of {$terms.reg_term_registration_cap}: - This is the number of hours before an event starts after which no more registrations are permitted.
+ This is the number of hours before an event starts after which no more {$terms.reg_term_registration_plur} are permitted.
Hours {if $regEvent.fieldFail.reg_hours_before}

{$regEvent.fieldFail.reg_hours_before}

{/if}
Registrations By:{$terms.reg_term_registration_plur_cap} By: {foreach from=$regEvent.fieldData.registration_account_options.bitmap item=v} {$v.name}
@@ -121,7 +120,7 @@
Registration Description:{$terms.reg_term_registration_cap} Description: This will be displayed in addition to any description text from the event {php} @@ -138,7 +137,7 @@
Terms and Conditions
for Registration:
Terms and Conditions
for {$terms.reg_term_registration_cap}:
the user will be required to acknowledge this at checkout. {php} diff --git a/views/admin/registrations/eventEditCustomFields.html b/views/admin/registrations/eventEditCustomFields.html index 1a40e17..abd2b80 100644 --- a/views/admin/registrations/eventEditCustomFields.html +++ b/views/admin/registrations/eventEditCustomFields.html @@ -4,16 +4,16 @@

Additional (custom) Fields

- {if $regEventUpdated}Registration Event Updated{/if} - {if $regEventUpdateError}Registration Event Update Error{/if} - {if $regEventAdded}Registration Event Added{/if} + {if $regEventUpdated}{$terms.reg_term_registration_cap} Event Updated{/if} + {if $regEventUpdateError}{$terms.reg_term_registration_cap} Event Update Error{/if} + {if $regEventAdded}{$terms.reg_term_registration_cap} Event Added{/if}

{if apply_filters('glm-members-customfields-plugin-active', false)}


{* Per Event Form for this event *} -

Requested once when registering for this event

+

Requested once when {$terms.reg_term_registering} for this event

These are additional fields of information that will be requested for this event in each submission.

{assign var="eventFid" value="glm_reg_customfields_reg_event_`$regEventID`"} @@ -22,7 +22,7 @@ {* Per Attendee Form for this event *}


-

Requested for each attendee for this event

+

Requested for each {$terms.reg_term_attendee} for this event

These are additional fields of information that will be requested for each registrant for this event.

{assign var="attendeeFid" value="glm_reg_customfields_reg_event_attendee_`$regEventID`"} @@ -32,7 +32,7 @@ {* Per Attendee form for each class (level) for this event *}


{foreach $classes as $class} -

Requested for each attendee for level: {$class.name}

+

Requested for each {$terms.reg_term_attendee} for level: {$class.name}

These are additional fields of information that will be requested for each registrant for this event.

{assign var="levelFid" value="glm_reg_customfields_reg_event_`$regEventID`_level_`$class.id`"} diff --git a/views/admin/registrations/eventEditLevels.html b/views/admin/registrations/eventEditLevels.html index b894918..bc682e7 100644 --- a/views/admin/registrations/eventEditLevels.html +++ b/views/admin/registrations/eventEditLevels.html @@ -2,9 +2,9 @@ {include file='admin/registrations/eventSubTabs.html'}

- {if $regEventUpdated}Registration Event Updated{/if} - {if $regEventUpdateError}Registration Event Update Error{/if} - {if $regEventAdded}Registration Event Added{/if} + {if $regEventUpdated}{$terms.reg_term_registration_cap} Event Updated{/if} + {if $regEventUpdateError}{$terms.reg_term_registration_cap} Event Update Error{/if} + {if $regEventAdded}{$terms.reg_term_registration_cap} Event Added{/if}

{* Event Registration App - Backbone.js *} @@ -13,8 +13,8 @@ {literal}