mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-23 13:46:48 +00:00
Merge "Add code comments to help find dynamically-generated IDs in the codebase"
This commit is contained in:
commit
9b5261a678
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue