more specific error message, using WikiError, if user trys to create account with...
[mediawiki.git] / includes / Licenses.php
blobb55dd1f5645320904129665df84379ca3560f68d
1 <?php
2 /**
3 * A License class for use on Special:Upload
5 * @ingroup SpecialPage
7 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
8 * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
9 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
12 class Licenses extends HTMLFormField {
13 /**
14 * @var string
16 protected $msg;
18 /**
19 * @var array
21 protected $licenses = array();
23 /**
24 * @var string
26 protected $html;
27 /**#@-*/
29 /**
30 * Constructor
32 public function __construct( $params ) {
33 parent::__construct( $params );
35 $this->msg = empty( $params['licenses'] ) ? wfMsgForContent( 'licenses' ) : $params['licenses'];
36 $this->selected = null;
38 $this->makeLicenses();
41 /**#@+
42 * @private
44 protected function makeLicenses() {
45 $levels = array();
46 $lines = explode( "\n", $this->msg );
48 foreach ( $lines as $line ) {
49 if ( strpos( $line, '*' ) !== 0 )
50 continue;
51 else {
52 list( $level, $line ) = $this->trimStars( $line );
54 if ( strpos( $line, '|' ) !== false ) {
55 $obj = new License( $line );
56 $this->stackItem( $this->licenses, $levels, $obj );
57 } else {
58 if ( $level < count( $levels ) ) {
59 $levels = array_slice( $levels, 0, $level );
61 if ( $level == count( $levels ) ) {
62 $levels[$level - 1] = $line;
63 } else if ( $level > count( $levels ) ) {
64 $levels[] = $line;
71 protected static function trimStars( $str ) {
72 $i = $count = 0;
74 $length = strlen( $str );
75 for ( $i = 0; $i < $length; $i++ ) {
76 if ( $str[$i] != '*' )
77 return array( $i, ltrim( $str, '* ' ) );
81 protected function stackItem( &$list, $path, $item ) {
82 $position =& $list;
83 if ( $path )
84 foreach( $path as $key )
85 $position =& $position[$key];
86 $position[] = $item;
89 protected function makeHtml( $tagset, $depth = 0 ) {
90 foreach ( $tagset as $key => $val )
91 if ( is_array( $val ) ) {
92 $this->html .= $this->outputOption(
93 $this->msg( $key ), '',
94 array(
95 'disabled' => 'disabled',
96 'style' => 'color: GrayText', // for MSIE
98 $depth
100 $this->makeHtml( $val, $depth + 1 );
101 } else {
102 $this->html .= $this->outputOption(
103 $this->msg( $val->text ), $val->template,
104 array( 'title' => '{{' . $val->template . '}}' ),
105 $depth
110 protected function outputOption( $text, $value, $attribs = null, $depth = 0 ) {
111 $attribs['value'] = $value;
112 if ( $value === $this->selected )
113 $attribs['selected'] = 'selected';
114 $val = str_repeat( /* &nbsp */ "\xc2\xa0", $depth * 2 ) . $text;
115 return str_repeat( "\t", $depth ) . Xml::element( 'option', $attribs, $val ) . "\n";
118 protected function msg( $str ) {
119 $out = wfMsg( $str );
120 return wfEmptyMsg( $str, $out ) ? $str : $out;
123 /**#@-*/
126 * Accessor for $this->licenses
128 * @return array
130 public function getLicenses() { return $this->licenses; }
133 * Accessor for $this->html
135 * @return string
137 public function getInputHTML( $value ) {
138 $this->selected = $value;
140 $this->html = $this->outputOption( wfMsg( 'nolicense' ), '',
141 (bool)$this->selected ? null : array( 'selected' => 'selected' ) );
142 $this->makeHtml( $this->getLicenses() );
144 $attribs = array(
145 'name' => $this->mName,
146 'id' => $this->mID
148 if ( !empty( $this->mParams['disabled'] ) )
149 $attibs['disabled'] = 'disabled';
151 return Html::rawElement( 'select', $attribs, $this->html );
156 * A License class for use on Special:Upload (represents a single type of license).
158 class License {
160 * @var string
162 var $template;
165 * @var string
167 var $text;
170 * Constructor
172 * @param $str String: license name??
174 function License( $str ) {
175 list( $text, $template ) = explode( '|', strrev( $str ), 2 );
177 $this->template = strrev( $template );
178 $this->text = strrev( $text );