--- /dev/null
+Things we need to review and work on when time permits
+------------------------------------------------------
+
+* Check all occurrences of glm_members_locked_to_member_id and update logic to die if not locked to member and not an Admin or Manager
+
+ This is only a problem if there is a failure to properly identify a logged in user who should only have access to their own member data.
+ The secondary check shown below tests for this by checking permission to use the "Members" menu.
+
+ Check all add-ons for use of this filter
+
+ This is a code segment that does a second check for a user who should have access to the "Members" menu.
+
+ // Check if there's a logged in user who is locked to their own entity
+ $lockedToMember = apply_filters('glm_members_locked_to_member_id', false);
+ if ($lockedToMember) {
+ $memberID = $lockedToMember;
+
+ // Next make darn't sure they are admin or members manager before checking for other member ID.
+ } elseif (!apply_filters('glm_members_menu_members', false) && !is_admin()) {
+
+ wp_die('There has been a member access check failure. Please call for support.');
+
+ // Otherwise Check for other member selection options
+ } else {
+
+
+* GLM Grid completion and testing
+
+
+* Better management of when scripts and css are enqueued - Standardized
+
+ Needs to be compliant with model redirection so that only those needed for the last model executed are enqueued.
+
+
\ No newline at end of file