Added glm-required class to css and "ThingsToGetTo.txt" file in the Misc directory.
authorChuck Scott <cscott@gaslightmedia.com>
Wed, 13 Dec 2017 19:11:43 +0000 (14:11 -0500)
committerChuck Scott <cscott@gaslightmedia.com>
Wed, 13 Dec 2017 19:11:43 +0000 (14:11 -0500)
css/front.css
misc/ThingsToGetTo.txt [new file with mode: 0644]

index 7952a4e..eeb9439 100644 (file)
@@ -34,6 +34,9 @@
 .glm-form-textarea {
     width: 90%;
 }
+.glm-required {
+    color: red !important;
+}
 
 /* Member-Only Front Header */
 #glm-member-front-header {
diff --git a/misc/ThingsToGetTo.txt b/misc/ThingsToGetTo.txt
new file mode 100644 (file)
index 0000000..d19d225
--- /dev/null
@@ -0,0 +1,34 @@
+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