From a40da7bb92f9bdf1571c6aef6fc002d259256c1c Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Wed, 3 Jan 2018 14:00:35 -0500 Subject: [PATCH] Minor view changes for registrations admin areas. Updated notice text returned by filter to event when editing event page. Updated reg event dashboard to more specifically show how to manage inventory. Added explanatory text to top of regueistrations requessts page. --- setup/adminHooks.php | 4 ++-- views/admin/registrations/eventDashboard.html | 9 +++++++-- views/admin/registrations/requestsDashboard.html | 4 ++++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/setup/adminHooks.php b/setup/adminHooks.php index 5c82737..d562775 100644 --- a/setup/adminHooks.php +++ b/setup/adminHooks.php @@ -72,8 +72,8 @@ add_filter( 'title' => 'Registrations', 'url' => GLM_MEMBERS_PLUGIN_ADMIN_MENU_URL_BASE."registrations-events&option=eventDashboard®EventID=".$regEvent['id'], 'warning_title' => 'Registration Dashboard for this Event', - 'edit_warning' => 'This event is setup for registrations!
If you modify dates or schedules for this event, you must check registrations afterwards.', - 'update_warning' => 'You updated an event that is setup for registrations.
If you modified any dates or schedules you must check registrations.' + 'edit_warning' => '', + 'update_warning' => '' ); } diff --git a/views/admin/registrations/eventDashboard.html b/views/admin/registrations/eventDashboard.html index e9a086b..17b953e 100644 --- a/views/admin/registrations/eventDashboard.html +++ b/views/admin/registrations/eventDashboard.html @@ -204,11 +204,11 @@

Event occurs every day from first day to last day at the times shown.

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

Edit attendee availability here for this event.

Unlimited registration - Set maximum attendees quantity below to limit registrations.
 
Limited availability for this event - the below numbers are for all days.
Maximum Attendees: @@ -221,7 +221,10 @@ {/if} {/foreach}
+ {if $regEvent.time_specific.value} +

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

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

+ {/if} + {else} + {/if}
@@ -250,6 +253,8 @@
Registered Attendees:
Pending in Carts:
Available for Registration:
Use form above calendar to adjust attendee availability.
Upate
diff --git a/views/admin/registrations/requestsDashboard.html b/views/admin/registrations/requestsDashboard.html index 06b8521..08bf0ec 100644 --- a/views/admin/registrations/requestsDashboard.html +++ b/views/admin/registrations/requestsDashboard.html @@ -5,6 +5,10 @@ {/if}

Registrations Requests List

+

+ This is a list of pending and submitted registration requests (carts).
+ The name, organization, and other information are for the person sumbiting the request. Pending requests may not have this data. +

-- 2.17.1