From: Geoffrey Mon Date: Thu, 30 Jul 2015 20:00:41 +0000 (+0000) Subject: Use XmlSelect in ProtectionForm X-Git-Tag: 1.31.0-rc.0~10575^2 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=0d83dd176fc4ecec5abc7b865832aad64bd2957e;p=lhc%2Fweb%2Fwiklou.git Use XmlSelect in ProtectionForm Bug: T93234 Change-Id: I47e08fb364dda6e4f59cd84c4c135e267e2c7bd9 --- diff --git a/includes/ProtectionForm.php b/includes/ProtectionForm.php index 1443d1ca69..4cad7b745a 100644 --- a/includes/ProtectionForm.php +++ b/includes/ProtectionForm.php @@ -384,7 +384,12 @@ class ProtectionForm { "mwProtect-$action-expires" ); - $expiryFormOptions = ''; + $expiryFormOptions = new XmlSelect( "wpProtectExpirySelection-$action", "mwProtectExpirySelection-$action", $this->mExpirySelection[$action] ); + $expiryFormOptions->setAttribute( 'tabindex', '2' ); + if ( $this->disabled ) { + $expiryFormOptions->setAttribute( 'disabled', 'disabled' ); + } + if ( $this->mExistingExpiry[$action] ) { if ( $this->mExistingExpiry[$action] == 'infinity' ) { $existingExpiryMessage = $context->msg( 'protect-existing-expiry-infinity' ); @@ -394,29 +399,17 @@ class ProtectionForm { $t = $lang->userTime( $this->mExistingExpiry[$action], $user ); $existingExpiryMessage = $context->msg( 'protect-existing-expiry', $timestamp, $d, $t ); } - $expiryFormOptions .= - Xml::option( - $existingExpiryMessage->text(), - 'existing', - $this->mExpirySelection[$action] == 'existing' - ) . "\n"; + $expiryFormOptions->addOption( $existingExpiryMessage->text(), 'existing' ); } - $expiryFormOptions .= Xml::option( - $context->msg( 'protect-othertime-op' )->text(), - "othertime" - ) . "\n"; + $expiryFormOptions->addOption( $context->msg( 'protect-othertime-op' )->text(), 'othertime' ); foreach ( explode( ',', $scExpiryOptions ) as $option ) { if ( strpos( $option, ":" ) === false ) { $show = $value = $option; } else { list( $show, $value ) = explode( ":", $option ); } - $expiryFormOptions .= Xml::option( - $show, - htmlspecialchars( $value ), - $this->mExpirySelection[$action] === $value - ) . "\n"; + $expiryFormOptions->addOption( $show, htmlspecialchars( $value ) ); } # Add expiry dropdown if ( $showProtectOptions && !$this->disabled ) { @@ -426,12 +419,7 @@ class ProtectionForm { {$mProtectexpiry} " . - Xml::tags( 'select', - array( - 'id' => "mwProtectExpirySelection-$action", - 'name' => "wpProtectExpirySelection-$action", - 'tabindex' => '2' ) + $this->disabledAttrib, - $expiryFormOptions ) . + $expiryFormOptions->getHTML() . " "; } @@ -576,18 +564,18 @@ class ProtectionForm { ); $id = 'mwProtect-level-' . $action; - $attribs = array( - 'id' => $id, - 'name' => $id, - 'size' => count( $levels ), - ) + $this->disabledAttrib; - $out = Xml::openElement( 'select', $attribs ); + $select = new XmlSelect( $id, $id, $selected ); + $select->setAttribute( 'size', count( $levels ) ); + if ( $this->disabled ) { + $select->setAttribute( 'disabled', 'disabled' ); + } + foreach ( $levels as $key ) { - $out .= Xml::option( $this->getOptionLabel( $key ), $key, $key == $selected ); + $select->addOption( $this->getOptionLabel( $key ), $key ); } - $out .= Xml::closeElement( 'select' ); - return $out; + + return $select->getHTML(); } /**