X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FProtectionForm.php;h=853e2cc412b7f2d7f2d6102679fa1ee855797eda;hb=b0b0d400dee3ef211a8b1798c7355f55c37172fb;hp=d34ee034fbaac32d81f33913a243d2ba4e91f056;hpb=f93d34fb756b3271cc13b5581316cefa66de5013;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/ProtectionForm.php b/includes/ProtectionForm.php index d34ee034fb..853e2cc412 100644 --- a/includes/ProtectionForm.php +++ b/includes/ProtectionForm.php @@ -117,15 +117,12 @@ class ProtectionForm { // Expiry selected from list $this->mExpiry[$action] = ''; $this->mExpirySelection[$action] = $requestExpirySelection; - } elseif ( $existingExpiry == 'infinity' ) { - // Existing expiry is infinite, use "infinite" in drop-down - $this->mExpiry[$action] = ''; - $this->mExpirySelection[$action] = 'infinite'; } elseif ( $existingExpiry ) { // Use existing expiry in its own list item $this->mExpiry[$action] = ''; $this->mExpirySelection[$action] = $existingExpiry; } else { + // Catches 'infinity' - Existing expiry is infinite, use "infinite" in drop-down // Final default: infinite $this->mExpiry[$action] = ''; $this->mExpirySelection[$action] = 'infinite'; @@ -341,20 +338,12 @@ class ProtectionForm { * @return string HTML form */ function buildForm() { - global $wgUser, $wgLang, $wgOut; - - $mProtectreasonother = Xml::label( - wfMessage( 'protectcomment' )->text(), - 'wpProtectReasonSelection' - ); - $mProtectreason = Xml::label( - wfMessage( 'protect-otherreason' )->text(), - 'mwProtect-reason' - ); + global $wgUser, $wgLang, $wgOut, $wgCascadingRestrictionLevels; $out = ''; if ( !$this->disabled ) { $wgOut->addModules( 'mediawiki.legacy.protect' ); + $wgOut->addJsConfigVars( 'wgCascadeableLevels', $wgCascadingRestrictionLevels ); $out .= Xml::openElement( 'form', array( 'method' => 'post', 'action' => $this->mTitle->getLocalURL( 'action=protect' ), 'id' => 'mw-Protect-Form', 'onsubmit' => 'ProtectionForm.enableUnchainedInputs(true)' ) ); @@ -365,6 +354,9 @@ class ProtectionForm { Xml::openElement( 'table', array( 'id' => 'mwProtectSet' ) ) . Xml::openElement( 'tbody' ); + $scExpiryOptions = wfMessage( 'protect-expiry-options' )->inContentLanguage()->text(); + $showProtectOptions = $scExpiryOptions !== '-' && !$this->disabled; + // Not all languages have V_x <-> N_x relation foreach ( $this->mRestrictions as $action => $selected ) { // Messages: @@ -376,15 +368,6 @@ class ProtectionForm { Xml::openElement( 'table', array( 'id' => "mw-protect-table-$action" ) ) . "" . $this->buildSelector( $action, $selected ) . ""; - $reasonDropDown = Xml::listDropDown( 'wpProtectReasonSelection', - wfMessage( 'protect-dropdown' )->inContentLanguage()->text(), - wfMessage( 'protect-otherreason-op' )->inContentLanguage()->text(), - $this->mReasonSelection, - 'mwProtect-reason', 4 ); - $scExpiryOptions = wfMessage( 'protect-expiry-options' )->inContentLanguage()->text(); - - $showProtectOptions = $scExpiryOptions !== '-' && !$this->disabled; - $mProtectexpiry = Xml::label( wfMessage( 'protectexpiry' )->text(), "mwProtectExpirySelection-$action" @@ -485,6 +468,22 @@ class ProtectionForm { # Add manual and custom reason field/selects as well as submit if ( !$this->disabled ) { + $mProtectreasonother = Xml::label( + wfMessage( 'protectcomment' )->text(), + 'wpProtectReasonSelection' + ); + + $mProtectreason = Xml::label( + wfMessage( 'protect-otherreason' )->text(), + 'mwProtect-reason' + ); + + $reasonDropDown = Xml::listDropDown( 'wpProtectReasonSelection', + wfMessage( 'protect-dropdown' )->inContentLanguage()->text(), + wfMessage( 'protect-otherreason-op' )->inContentLanguage()->text(), + $this->mReasonSelection, + 'mwProtect-reason', 4 ); + $out .= Xml::openElement( 'table', array( 'id' => 'mw-protect-table3' ) ) . Xml::openElement( 'tbody' ); $out .= " @@ -609,9 +608,6 @@ class ProtectionForm { } function buildCleanupScript() { - global $wgCascadingRestrictionLevels, $wgOut; - - $cascadeableLevels = $wgCascadingRestrictionLevels; $options = array( 'tableId' => 'mwProtectSet', 'labelText' => wfMessage( 'protect-unchain-permissions' )->plain(), @@ -619,8 +615,8 @@ class ProtectionForm { 'existingMatch' => count( array_unique( $this->mExistingExpiry ) ) === 1, ); - $wgOut->addJsConfigVars( 'wgCascadeableLevels', $cascadeableLevels ); $script = Xml::encodeJsCall( 'ProtectionForm.init', array( $options ) ); + return Html::inlineScript( ResourceLoader::makeLoaderConditionalScript( $script ) ); }