diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
commit | ca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch) | |
tree | ec04cc15b867bc21eedca904cea9af0254531a11 /includes/Licenses.php | |
parent | a22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (diff) |
Update to MediaWiki 1.18.0
* also update ArchLinux skin to chagnes in MonoBook
* Use only css to hide our menu bar when printing
Diffstat (limited to 'includes/Licenses.php')
-rw-r--r-- | includes/Licenses.php | 49 |
1 files changed, 39 insertions, 10 deletions
diff --git a/includes/Licenses.php b/includes/Licenses.php index 45944c73..09fa8db3 100644 --- a/includes/Licenses.php +++ b/includes/Licenses.php @@ -28,6 +28,8 @@ class Licenses extends HTMLFormField { /** * Constructor + * + * @param $params array */ public function __construct( $params ) { parent::__construct( $params ); @@ -38,7 +40,7 @@ class Licenses extends HTMLFormField { $this->makeLicenses(); } - /**#@+ + /** * @private */ protected function makeLicenses() { @@ -46,9 +48,9 @@ class Licenses extends HTMLFormField { $lines = explode( "\n", $this->msg ); foreach ( $lines as $line ) { - if ( strpos( $line, '*' ) !== 0 ) + if ( strpos( $line, '*' ) !== 0 ) { continue; - else { + } else { list( $level, $line ) = $this->trimStars( $line ); if ( strpos( $line, '|' ) !== false ) { @@ -60,7 +62,7 @@ class Licenses extends HTMLFormField { } if ( $level == count( $levels ) ) { $levels[$level - 1] = $line; - } else if ( $level > count( $levels ) ) { + } elseif ( $level > count( $levels ) ) { $levels[] = $line; } } @@ -68,19 +70,34 @@ class Licenses extends HTMLFormField { } } + /** + * @param $str + * @return array + */ protected function trimStars( $str ) { $numStars = strspn( $str, '*' ); return array( $numStars, ltrim( substr( $str, $numStars ), ' ' ) ); } + /** + * @param $list + * @param $path + * @param $item + */ protected function stackItem( &$list, $path, $item ) { $position =& $list; - if ( $path ) - foreach( $path as $key ) + if ( $path ) { + foreach( $path as $key ) { $position =& $position[$key]; + } + } $position[] = $item; } + /** + * @param $tagset + * @param $depth int + */ protected function makeHtml( $tagset, $depth = 0 ) { foreach ( $tagset as $key => $val ) if ( is_array( $val ) ) { @@ -102,6 +119,13 @@ class Licenses extends HTMLFormField { } } + /** + * @param $text + * @param $value + * @param $attribs null + * @param $depth int + * @return string + */ protected function outputOption( $text, $value, $attribs = null, $depth = 0 ) { $attribs['value'] = $value; if ( $value === $this->selected ) @@ -111,8 +135,8 @@ class Licenses extends HTMLFormField { } protected function msg( $str ) { - $out = wfMsg( $str ); - return wfEmptyMsg( $str, $out ) ? $str : $out; + $msg = wfMessage( $str ); + return $msg->exists() ? $msg->text() : $str; } /**#@-*/ @@ -122,11 +146,15 @@ class Licenses extends HTMLFormField { * * @return array */ - public function getLicenses() { return $this->licenses; } + public function getLicenses() { + return $this->licenses; + } /** * Accessor for $this->html * + * @param $value bool + * * @return string */ public function getInputHTML( $value ) { @@ -140,8 +168,9 @@ class Licenses extends HTMLFormField { 'name' => $this->mName, 'id' => $this->mID ); - if ( !empty( $this->mParams['disabled'] ) ) + if ( !empty( $this->mParams['disabled'] ) ) { $attibs['disabled'] = 'disabled'; + } return Html::rawElement( 'select', $attribs, $this->html ); } |