Add code comments to help find dynamically-generated IDs in the codebase

Bug: T378319
Change-Id: Id5dd2dc1a979423f2ec4e0f091fb854b2ff185cb
This commit is contained in:
Anne Haunime 2024-10-29 03:10:27 +00:00 committed by [[mw:User:Od1n]]
parent 5a930d59d3
commit 2f4ca44adf

View file

@ -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;
}