From 2f4ca44adf0b8c0571a66842d4660eef624ed1f2 Mon Sep 17 00:00:00 2001 From: Anne Haunime Date: Tue, 29 Oct 2024 03:10:27 +0000 Subject: [PATCH] Add code comments to help find dynamically-generated IDs in the codebase Bug: T378319 Change-Id: Id5dd2dc1a979423f2ec4e0f091fb854b2ff185cb --- includes/View/AbuseFilterViewEdit.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/View/AbuseFilterViewEdit.php b/includes/View/AbuseFilterViewEdit.php index 0db1e5b98..a142e44f6 100644 --- a/includes/View/AbuseFilterViewEdit.php +++ b/includes/View/AbuseFilterViewEdit.php @@ -463,6 +463,7 @@ class AbuseFilterViewEdit extends AbuseFilterView { $message = "abusefilter-edit-$checkboxId"; // isEnabled(), isDeleted(), isHidden(), isProtected(), isGlobal() $method = 'is' . ucfirst( $checkboxId ); + // wpFilterEnabled, wpFilterDeleted, wpFilterHidden, wpFilterProtected, wpFilterGlobal $postVar = 'wpFilter' . ucfirst( $checkboxId ); $checkboxAttribs = [ @@ -507,6 +508,7 @@ class AbuseFilterViewEdit extends AbuseFilterView { if ( $checkboxId === 'deleted' || $checkboxId === 'enabled' ) { $checkboxAttribs['infusable'] = true; if ( $checkboxId === 'deleted' ) { + // wpFilterDeletedLabel $labelAttribs['id'] = $postVar . 'Label'; $labelAttribs['infusable'] = true; }