2
);
-// Add a filter to include a link to either create registrations for an event or to update that.
+/*
+ * Add a filter to include a link to either create registrations for an event or to update that.
+ * If this is for a an event that has registrations setup, also provide some messages for edit
+ * and update pages for the event to let users know they have to update registrations if they
+ * change the dates or schedules.
+ */
add_filter(
'glm_members_add_link_to_event_list_entry',
function( $content ){
return array(
'title' => 'Add Registrations To Event',
'url' => GLM_MEMBERS_PLUGIN_ADMIN_MENU_URL_BASE."registrations-events&option=eventDashboard&option=add&event=".$eventId,
+ 'warning_title' => false,
'edit_warning' => '',
'update_warning' => ''
);