diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2007-05-16 20:58:53 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2007-05-16 20:58:53 +0000 |
commit | cecb985bee3bdd252e1b8dc0bd500b37cd52be01 (patch) | |
tree | 17266aa237742640aabee7856f0202317a45d540 /includes/SpecialMovepage.php | |
parent | 0bac06c301f2a83edb0236e4c2434da16848d549 (diff) |
Aktualisierung auf MediaWiki 1.10.0
Plugins angepasst und verbessert
kleine Korrekturen am Design
Diffstat (limited to 'includes/SpecialMovepage.php')
-rw-r--r-- | includes/SpecialMovepage.php | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/includes/SpecialMovepage.php b/includes/SpecialMovepage.php index e3112c4c..d8f01874 100644 --- a/includes/SpecialMovepage.php +++ b/includes/SpecialMovepage.php @@ -1,8 +1,7 @@ <?php /** * - * @package MediaWiki - * @subpackage SpecialPage + * @addtogroup SpecialPage */ /** @@ -42,9 +41,8 @@ function wfSpecialMovepage( $par = null ) { } /** - * - * @package MediaWiki - * @subpackage SpecialPage + * HTML form for Special:Movepage + * @addtogroup SpecialPage */ class MovePageForm { var $oldTitle, $newTitle, $reason; # Text input @@ -68,7 +66,10 @@ class MovePageForm { } function showForm( $err ) { - global $wgOut, $wgUser; + global $wgOut, $wgUser, $wgContLang; + + $start = $wgContLang->isRTL() ? 'right' : 'left'; + $end = $wgContLang->isRTL() ? 'left' : 'right'; $wgOut->setPagetitle( wfMsg( 'movepage' ) ); @@ -108,10 +109,10 @@ class MovePageForm { $submitVar = 'wpDeleteAndMove'; $confirm = " <tr> - <td align='right'> + <td align='$end'> <input type='checkbox' name='wpConfirm' id='wpConfirm' value=\"true\" /> </td> - <td align='left'><label for='wpConfirm'>{$confirmText}</label></td> + <td align='$start'><label for='wpConfirm'>{$confirmText}</label></td> </tr>"; $err = ''; } else { @@ -148,19 +149,19 @@ class MovePageForm { <form id=\"movepage\" method=\"post\" action=\"{$action}\"> <table border='0'> <tr> - <td align='right'>{$movearticle}:</td> - <td align='left'><strong>{$oldTitle}</strong></td> + <td align='$end'>{$movearticle}:</td> + <td align='$start'><strong>{$oldTitle}</strong></td> </tr> <tr> - <td align='right'><label for='wpNewTitle'>{$newtitle}:</label></td> - <td align='left'> + <td align='$end'><label for='wpNewTitle'>{$newtitle}:</label></td> + <td align='$start'> <input type='text' size='40' name='wpNewTitle' id='wpNewTitle' value=\"{$encNewTitle}\" /> <input type='hidden' name=\"wpOldTitle\" value=\"{$encOldTitle}\" /> </td> </tr> <tr> - <td align='right' valign='top'><br /><label for='wpReason'>{$movereason}:</label></td> - <td align='left' valign='top'><br /> + <td align='$end' valign='top'><br /><label for='wpReason'>{$movereason}:</label></td> + <td align='$start' valign='top'><br /> <textarea cols='60' rows='2' name='wpReason' id='wpReason'>{$encReason}</textarea> </td> </tr>" ); @@ -168,7 +169,7 @@ class MovePageForm { if ( $considerTalk ) { $wgOut->addHTML( " <tr> - <td align='right'> + <td align='$end'> <input type='checkbox' id=\"wpMovetalk\" name=\"wpMovetalk\"{$moveTalkChecked} value=\"1\" /> </td> <td><label for=\"wpMovetalk\">{$movetalk}</label></td> @@ -177,7 +178,7 @@ class MovePageForm { $watchChecked = $this->watch || $wgUser->getBoolOption( 'watchmoves' ) || $ot->userIsWatching(); $watch = '<tr>'; - $watch .= '<td align="right">' . Xml::check( 'wpWatch', $watchChecked, array( 'id' => 'watch' ) ) . '</td>'; + $watch .= "<td align=\"$end\">" . Xml::check( 'wpWatch', $watchChecked, array( 'id' => 'watch' ) ) . '</td>'; $watch .= '<td>' . Xml::label( wfMsg( 'move-watch' ), 'watch' ) . '</td>'; $watch .= '</tr>'; $wgOut->addHtml( $watch ); @@ -186,7 +187,7 @@ class MovePageForm { {$confirm} <tr> <td> </td> - <td align='left'> + <td align='$start'> <input type='submit' name=\"{$submitVar}\" value=\"{$movepagebtn}\" /> </td> </tr> |