8cb99f55cd9fd27edbfb8556436d69b94694e411
[lhc/web/wiklou.git] / includes / Html.php
1 <?php
2 /**
3 * Collection of methods to generate HTML content
4 *
5 * Copyright © 2009 Aryeh Gregor
6 * http://www.mediawiki.org/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 /**
27 * This class is a collection of static functions that serve two purposes:
28 *
29 * 1) Implement any algorithms specified by HTML5, or other HTML
30 * specifications, in a convenient and self-contained way.
31 *
32 * 2) Allow HTML elements to be conveniently and safely generated, like the
33 * current Xml class but a) less confused (Xml supports HTML-specific things,
34 * but only sometimes!) and b) not necessarily confined to XML-compatible
35 * output.
36 *
37 * There are two important configuration options this class uses:
38 *
39 * $wgHtml5: If this is set to false, then all output should be valid XHTML 1.0
40 * Transitional.
41 * $wgWellFormedXml: If this is set to true, then all output should be
42 * well-formed XML (quotes on attributes, self-closing tags, etc.).
43 *
44 * This class is meant to be confined to utility functions that are called from
45 * trusted code paths. It does not do enforcement of policy like not allowing
46 * <a> elements.
47 *
48 * @since 1.16
49 */
50 class Html {
51 # List of void elements from HTML5, section 8.1.2 as of 2011-08-12
52 private static $voidElements = array(
53 'area',
54 'base',
55 'br',
56 'col',
57 'command',
58 'embed',
59 'hr',
60 'img',
61 'input',
62 'keygen',
63 'link',
64 'meta',
65 'param',
66 'source',
67 'track',
68 'wbr',
69 );
70
71 # Boolean attributes, which may have the value omitted entirely. Manually
72 # collected from the HTML5 spec as of 2011-08-12.
73 private static $boolAttribs = array(
74 'async',
75 'autofocus',
76 'autoplay',
77 'checked',
78 'controls',
79 'default',
80 'defer',
81 'disabled',
82 'formnovalidate',
83 'hidden',
84 'ismap',
85 'itemscope',
86 'loop',
87 'multiple',
88 'muted',
89 'novalidate',
90 'open',
91 'pubdate',
92 'readonly',
93 'required',
94 'reversed',
95 'scoped',
96 'seamless',
97 'selected',
98 'truespeed',
99 'typemustmatch',
100 # HTML5 Microdata
101 'itemscope',
102 );
103
104 private static $HTMLFiveOnlyAttribs = array(
105 'autocomplete',
106 'autofocus',
107 'max',
108 'min',
109 'multiple',
110 'pattern',
111 'placeholder',
112 'required',
113 'step',
114 'spellcheck',
115 );
116
117 /**
118 * Returns an HTML element in a string. The major advantage here over
119 * manually typing out the HTML is that it will escape all attribute
120 * values. If you're hardcoding all the attributes, or there are none, you
121 * should probably just type out the html element yourself.
122 *
123 * This is quite similar to Xml::tags(), but it implements some useful
124 * HTML-specific logic. For instance, there is no $allowShortTag
125 * parameter: the closing tag is magically omitted if $element has an empty
126 * content model. If $wgWellFormedXml is false, then a few bytes will be
127 * shaved off the HTML output as well.
128 *
129 * @param $element string The element's name, e.g., 'a'
130 * @param $attribs array Associative array of attributes, e.g., array(
131 * 'href' => 'http://www.mediawiki.org/' ). See expandAttributes() for
132 * further documentation.
133 * @param $contents string The raw HTML contents of the element: *not*
134 * escaped!
135 * @return string Raw HTML
136 */
137 public static function rawElement( $element, $attribs = array(), $contents = '' ) {
138 global $wgWellFormedXml;
139 $start = self::openElement( $element, $attribs );
140 if ( in_array( $element, self::$voidElements ) ) {
141 if ( $wgWellFormedXml ) {
142 # Silly XML.
143 return substr( $start, 0, -1 ) . ' />';
144 }
145 return $start;
146 } else {
147 return "$start$contents" . self::closeElement( $element );
148 }
149 }
150
151 /**
152 * Identical to rawElement(), but HTML-escapes $contents (like
153 * Xml::element()).
154 *
155 * @param $element string
156 * @param $attribs array
157 * @param $contents string
158 *
159 * @return string
160 */
161 public static function element( $element, $attribs = array(), $contents = '' ) {
162 return self::rawElement( $element, $attribs, strtr( $contents, array(
163 # There's no point in escaping quotes, >, etc. in the contents of
164 # elements.
165 '&' => '&amp;',
166 '<' => '&lt;'
167 ) ) );
168 }
169
170 /**
171 * Identical to rawElement(), but has no third parameter and omits the end
172 * tag (and the self-closing '/' in XML mode for empty elements).
173 *
174 * @param $element string
175 * @param $attribs array
176 *
177 * @return string
178 */
179 public static function openElement( $element, $attribs = array() ) {
180 global $wgHtml5, $wgWellFormedXml;
181 $attribs = (array)$attribs;
182 # This is not required in HTML5, but let's do it anyway, for
183 # consistency and better compression.
184 $element = strtolower( $element );
185
186 # In text/html, initial <html> and <head> tags can be omitted under
187 # pretty much any sane circumstances, if they have no attributes. See:
188 # <http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#optional-tags>
189 if ( !$wgWellFormedXml && !$attribs
190 && in_array( $element, array( 'html', 'head' ) ) ) {
191 return '';
192 }
193
194 # Remove invalid input types
195 if ( $element == 'input' ) {
196 $validTypes = array(
197 'hidden',
198 'text',
199 'password',
200 'checkbox',
201 'radio',
202 'file',
203 'submit',
204 'image',
205 'reset',
206 'button',
207 );
208
209 # Allow more input types in HTML5 mode
210 if( $wgHtml5 ) {
211 $validTypes = array_merge( $validTypes, array(
212 'datetime',
213 'datetime-local',
214 'date',
215 'month',
216 'time',
217 'week',
218 'number',
219 'range',
220 'email',
221 'url',
222 'search',
223 'tel',
224 'color',
225 ) );
226 }
227 if ( isset( $attribs['type'] )
228 && !in_array( $attribs['type'], $validTypes ) ) {
229 unset( $attribs['type'] );
230 }
231 }
232
233 if ( !$wgHtml5 && $element == 'textarea' && isset( $attribs['maxlength'] ) ) {
234 unset( $attribs['maxlength'] );
235 }
236
237 return "<$element" . self::expandAttributes(
238 self::dropDefaults( $element, $attribs ) ) . '>';
239 }
240
241 /**
242 * Returns "</$element>", except if $wgWellFormedXml is off, in which case
243 * it returns the empty string when that's guaranteed to be safe.
244 *
245 * @since 1.17
246 * @param $element string Name of the element, e.g., 'a'
247 * @return string A closing tag, if required
248 */
249 public static function closeElement( $element ) {
250 global $wgWellFormedXml;
251
252 $element = strtolower( $element );
253
254 # Reference:
255 # http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#optional-tags
256 if ( !$wgWellFormedXml && in_array( $element, array(
257 'html',
258 'head',
259 'body',
260 'li',
261 'dt',
262 'dd',
263 'tr',
264 'td',
265 'th',
266 ) ) ) {
267 return '';
268 }
269 return "</$element>";
270 }
271
272 /**
273 * Given an element name and an associative array of element attributes,
274 * return an array that is functionally identical to the input array, but
275 * possibly smaller. In particular, attributes might be stripped if they
276 * are given their default values.
277 *
278 * This method is not guaranteed to remove all redundant attributes, only
279 * some common ones and some others selected arbitrarily at random. It
280 * only guarantees that the output array should be functionally identical
281 * to the input array (currently per the HTML 5 draft as of 2009-09-06).
282 *
283 * @param $element string Name of the element, e.g., 'a'
284 * @param $attribs array Associative array of attributes, e.g., array(
285 * 'href' => 'http://www.mediawiki.org/' ). See expandAttributes() for
286 * further documentation.
287 * @return array An array of attributes functionally identical to $attribs
288 */
289 private static function dropDefaults( $element, $attribs ) {
290 # Don't bother doing anything if we aren't outputting HTML5; it's too
291 # much of a pain to maintain two sets of defaults.
292 global $wgHtml5;
293 if ( !$wgHtml5 ) {
294 return $attribs;
295 }
296
297 # Whenever altering this array, please provide a covering test case
298 # in HtmlTest::provideElementsWithAttributesHavingDefaultValues
299 static $attribDefaults = array(
300 'area' => array( 'shape' => 'rect' ),
301 'button' => array(
302 'formaction' => 'GET',
303 'formenctype' => 'application/x-www-form-urlencoded',
304 'type' => 'submit',
305 ),
306 'canvas' => array(
307 'height' => '150',
308 'width' => '300',
309 ),
310 'command' => array( 'type' => 'command' ),
311 'form' => array(
312 'action' => 'GET',
313 'autocomplete' => 'on',
314 'enctype' => 'application/x-www-form-urlencoded',
315 ),
316 'input' => array(
317 'formaction' => 'GET',
318 'type' => 'text',
319 ),
320 'keygen' => array( 'keytype' => 'rsa' ),
321 'link' => array( 'media' => 'all' ),
322 'menu' => array( 'type' => 'list' ),
323 # Note: the use of text/javascript here instead of other JavaScript
324 # MIME types follows the HTML5 spec.
325 'script' => array( 'type' => 'text/javascript' ),
326 'style' => array(
327 'media' => 'all',
328 'type' => 'text/css',
329 ),
330 'textarea' => array( 'wrap' => 'soft' ),
331 );
332
333 $element = strtolower( $element );
334
335 foreach ( $attribs as $attrib => $value ) {
336 $lcattrib = strtolower( $attrib );
337 if( is_array( $value ) ) {
338 $value = implode( ' ', $value );
339 } else {
340 $value = strval( $value );
341 }
342
343 # Simple checks using $attribDefaults
344 if ( isset( $attribDefaults[$element][$lcattrib] ) &&
345 $attribDefaults[$element][$lcattrib] == $value ) {
346 unset( $attribs[$attrib] );
347 }
348
349 if ( $lcattrib == 'class' && $value == '' ) {
350 unset( $attribs[$attrib] );
351 }
352 }
353
354 # More subtle checks
355 if ( $element === 'link' && isset( $attribs['type'] )
356 && strval( $attribs['type'] ) == 'text/css' ) {
357 unset( $attribs['type'] );
358 }
359 if ( $element === 'input' ) {
360 $type = isset( $attribs['type'] ) ? $attribs['type'] : null;
361 $value = isset( $attribs['value'] ) ? $attribs['value'] : null;
362 if ( $type === 'checkbox' || $type === 'radio' ) {
363 // The default value for checkboxes and radio buttons is 'on'
364 // not ''. By stripping value="" we break radio boxes that
365 // actually wants empty values.
366 if ( $value === 'on' ) {
367 unset( $attribs['value'] );
368 }
369 } elseif ( $type === 'submit' ) {
370 // The default value for submit appears to be "Submit" but
371 // let's not bother stripping out localized text that matches
372 // that.
373 } else {
374 // The default value for nearly every other field type is ''
375 // The 'range' and 'color' types use different defaults but
376 // stripping a value="" does not hurt them.
377 if ( $value === '' ) {
378 unset( $attribs['value'] );
379 }
380 }
381 }
382 if ( $element === 'select' && isset( $attribs['size'] ) ) {
383 if ( in_array( 'multiple', $attribs )
384 || ( isset( $attribs['multiple'] ) && $attribs['multiple'] !== false )
385 ) {
386 # A multi-select
387 if ( strval( $attribs['size'] ) == '4' ) {
388 unset( $attribs['size'] );
389 }
390 } else {
391 # Single select
392 if ( strval( $attribs['size'] ) == '1' ) {
393 unset( $attribs['size'] );
394 }
395 }
396 }
397
398 return $attribs;
399 }
400
401 /**
402 * Given an associative array of element attributes, generate a string
403 * to stick after the element name in HTML output. Like array( 'href' =>
404 * 'http://www.mediawiki.org/' ) becomes something like
405 * ' href="http://www.mediawiki.org"'. Again, this is like
406 * Xml::expandAttributes(), but it implements some HTML-specific logic.
407 * For instance, it will omit quotation marks if $wgWellFormedXml is false,
408 * and will treat boolean attributes specially.
409 *
410 * Attributes that should contain space-separated lists (such as 'class') array
411 * values are allowed as well, which will automagically be normalized
412 * and converted to a space-separated string. In addition to a numerical
413 * array, the attribute value may also be an associative array. See the
414 * example below for how that works.
415 *
416 * @par Numerical array
417 * @code
418 * Html::element( 'em', array(
419 * 'class' => array( 'foo', 'bar' )
420 * ) );
421 * // gives '<em class="foo bar"></em>'
422 * @endcode
423 *
424 * @par Associative array
425 * @code
426 * Html::element( 'em', array(
427 * 'class' => array( 'foo', 'bar', 'foo' => false, 'quux' => true )
428 * ) );
429 * // gives '<em class="bar quux"></em>'
430 * @endcode
431 *
432 * @param $attribs array Associative array of attributes, e.g., array(
433 * 'href' => 'http://www.mediawiki.org/' ). Values will be HTML-escaped.
434 * A value of false means to omit the attribute. For boolean attributes,
435 * you can omit the key, e.g., array( 'checked' ) instead of
436 * array( 'checked' => 'checked' ) or such.
437 * @return string HTML fragment that goes between element name and '>'
438 * (starting with a space if at least one attribute is output)
439 */
440 public static function expandAttributes( $attribs ) {
441 global $wgHtml5, $wgWellFormedXml;
442
443 $ret = '';
444 $attribs = (array)$attribs;
445 foreach ( $attribs as $key => $value ) {
446 if ( $value === false || is_null( $value ) ) {
447 continue;
448 }
449
450 # For boolean attributes, support array( 'foo' ) instead of
451 # requiring array( 'foo' => 'meaningless' ).
452 if ( is_int( $key )
453 && in_array( strtolower( $value ), self::$boolAttribs ) ) {
454 $key = $value;
455 }
456
457 # Not technically required in HTML5, but required in XHTML 1.0,
458 # and we'd like consistency and better compression anyway.
459 $key = strtolower( $key );
460
461 # Here we're blacklisting some HTML5-only attributes...
462 if ( !$wgHtml5 && in_array( $key, self::$HTMLFiveOnlyAttribs )
463 ) {
464 continue;
465 }
466
467 # Bug 23769: Blacklist all form validation attributes for now. Current
468 # (June 2010) WebKit has no UI, so the form just refuses to submit
469 # without telling the user why, which is much worse than failing
470 # server-side validation. Opera is the only other implementation at
471 # this time, and has ugly UI, so just kill the feature entirely until
472 # we have at least one good implementation.
473 if ( in_array( $key, array( 'max', 'min', 'pattern', 'required', 'step' ) ) ) {
474 continue;
475 }
476
477 // http://www.w3.org/TR/html401/index/attributes.html ("space-separated")
478 // http://www.w3.org/TR/html5/index.html#attributes-1 ("space-separated")
479 $spaceSeparatedListAttributes = array(
480 'class', // html4, html5
481 'accesskey', // as of html5, multiple space-separated values allowed
482 // html4-spec doesn't document rel= as space-separated
483 // but has been used like that and is now documented as such
484 // in the html5-spec.
485 'rel',
486 );
487
488 # Specific features for attributes that allow a list of space-separated values
489 if ( in_array( $key, $spaceSeparatedListAttributes ) ) {
490 // Apply some normalization and remove duplicates
491
492 // Convert into correct array. Array can contain space-seperated
493 // values. Implode/explode to get those into the main array as well.
494 if ( is_array( $value ) ) {
495 // If input wasn't an array, we can skip this step
496
497 $newValue = array();
498 foreach ( $value as $k => $v ) {
499 if ( is_string( $v ) ) {
500 // String values should be normal `array( 'foo' )`
501 // Just append them
502 if ( !isset( $value[$v] ) ) {
503 // As a special case don't set 'foo' if a
504 // separate 'foo' => true/false exists in the array
505 // keys should be authoritive
506 $newValue[] = $v;
507 }
508 } elseif ( $v ) {
509 // If the value is truthy but not a string this is likely
510 // an array( 'foo' => true ), falsy values don't add strings
511 $newValue[] = $k;
512 }
513 }
514 $value = implode( ' ', $newValue );
515 }
516 $value = explode( ' ', $value );
517
518 // Normalize spacing by fixing up cases where people used
519 // more than 1 space and/or a trailing/leading space
520 $value = array_diff( $value, array( '', ' ' ) );
521
522 // Remove duplicates and create the string
523 $value = implode( ' ', array_unique( $value ) );
524 }
525
526 # See the "Attributes" section in the HTML syntax part of HTML5,
527 # 9.1.2.3 as of 2009-08-10. Most attributes can have quotation
528 # marks omitted, but not all. (Although a literal " is not
529 # permitted, we don't check for that, since it will be escaped
530 # anyway.)
531 #
532 # See also research done on further characters that need to be
533 # escaped: http://code.google.com/p/html5lib/issues/detail?id=93
534 $badChars = "\\x00- '=<>`/\x{00a0}\x{1680}\x{180e}\x{180F}\x{2000}\x{2001}"
535 . "\x{2002}\x{2003}\x{2004}\x{2005}\x{2006}\x{2007}\x{2008}\x{2009}"
536 . "\x{200A}\x{2028}\x{2029}\x{202F}\x{205F}\x{3000}";
537 if ( $wgWellFormedXml || $value === ''
538 || preg_match( "![$badChars]!u", $value ) ) {
539 $quote = '"';
540 } else {
541 $quote = '';
542 }
543
544 if ( in_array( $key, self::$boolAttribs ) ) {
545 # In XHTML 1.0 Transitional, the value needs to be equal to the
546 # key. In HTML5, we can leave the value empty instead. If we
547 # don't need well-formed XML, we can omit the = entirely.
548 if ( !$wgWellFormedXml ) {
549 $ret .= " $key";
550 } elseif ( $wgHtml5 ) {
551 $ret .= " $key=\"\"";
552 } else {
553 $ret .= " $key=\"$key\"";
554 }
555 } else {
556 # Apparently we need to entity-encode \n, \r, \t, although the
557 # spec doesn't mention that. Since we're doing strtr() anyway,
558 # and we don't need <> escaped here, we may as well not call
559 # htmlspecialchars().
560 # @todo FIXME: Verify that we actually need to
561 # escape \n\r\t here, and explain why, exactly.
562 #
563 # We could call Sanitizer::encodeAttribute() for this, but we
564 # don't because we're stubborn and like our marginal savings on
565 # byte size from not having to encode unnecessary quotes.
566 $map = array(
567 '&' => '&amp;',
568 '"' => '&quot;',
569 "\n" => '&#10;',
570 "\r" => '&#13;',
571 "\t" => '&#9;'
572 );
573 if ( $wgWellFormedXml ) {
574 # This is allowed per spec: <http://www.w3.org/TR/xml/#NT-AttValue>
575 # But reportedly it breaks some XML tools?
576 # @todo FIXME: Is this really true?
577 $map['<'] = '&lt;';
578 }
579
580 $ret .= " $key=$quote" . strtr( $value, $map ) . $quote;
581 }
582 }
583 return $ret;
584 }
585
586 /**
587 * Output a "<script>" tag with the given contents.
588 *
589 * @todo do some useful escaping as well, like if $contents contains
590 * literal "</script>" or (for XML) literal "]]>".
591 *
592 * @param $contents string JavaScript
593 * @return string Raw HTML
594 */
595 public static function inlineScript( $contents ) {
596 global $wgHtml5, $wgJsMimeType, $wgWellFormedXml;
597
598 $attrs = array();
599
600 if ( !$wgHtml5 ) {
601 $attrs['type'] = $wgJsMimeType;
602 }
603
604 if ( $wgWellFormedXml && preg_match( '/[<&]/', $contents ) ) {
605 $contents = "/*<![CDATA[*/$contents/*]]>*/";
606 }
607
608 return self::rawElement( 'script', $attrs, $contents );
609 }
610
611 /**
612 * Output a "<script>" tag linking to the given URL, e.g.,
613 * "<script src=foo.js></script>".
614 *
615 * @param $url string
616 * @return string Raw HTML
617 */
618 public static function linkedScript( $url ) {
619 global $wgHtml5, $wgJsMimeType;
620
621 $attrs = array( 'src' => $url );
622
623 if ( !$wgHtml5 ) {
624 $attrs['type'] = $wgJsMimeType;
625 }
626
627 return self::element( 'script', $attrs );
628 }
629
630 /**
631 * Output a "<style>" tag with the given contents for the given media type
632 * (if any). TODO: do some useful escaping as well, like if $contents
633 * contains literal "</style>" (admittedly unlikely).
634 *
635 * @param $contents string CSS
636 * @param $media mixed A media type string, like 'screen'
637 * @return string Raw HTML
638 */
639 public static function inlineStyle( $contents, $media = 'all' ) {
640 global $wgWellFormedXml;
641
642 if ( $wgWellFormedXml && preg_match( '/[<&]/', $contents ) ) {
643 $contents = "/*<![CDATA[*/$contents/*]]>*/";
644 }
645
646 return self::rawElement( 'style', array(
647 'type' => 'text/css',
648 'media' => $media,
649 ), $contents );
650 }
651
652 /**
653 * Output a "<link rel=stylesheet>" linking to the given URL for the given
654 * media type (if any).
655 *
656 * @param $url string
657 * @param $media mixed A media type string, like 'screen'
658 * @return string Raw HTML
659 */
660 public static function linkedStyle( $url, $media = 'all' ) {
661 return self::element( 'link', array(
662 'rel' => 'stylesheet',
663 'href' => $url,
664 'type' => 'text/css',
665 'media' => $media,
666 ) );
667 }
668
669 /**
670 * Convenience function to produce an "<input>" element. This supports the
671 * new HTML5 input types and attributes, and will silently strip them if
672 * $wgHtml5 is false.
673 *
674 * @param $name string name attribute
675 * @param $value mixed value attribute
676 * @param $type string type attribute
677 * @param $attribs array Associative array of miscellaneous extra
678 * attributes, passed to Html::element()
679 * @return string Raw HTML
680 */
681 public static function input( $name, $value = '', $type = 'text', $attribs = array() ) {
682 $attribs['type'] = $type;
683 $attribs['value'] = $value;
684 $attribs['name'] = $name;
685
686 return self::element( 'input', $attribs );
687 }
688
689 /**
690 * Convenience function to produce an input element with type=hidden
691 *
692 * @param $name string name attribute
693 * @param $value string value attribute
694 * @param $attribs array Associative array of miscellaneous extra
695 * attributes, passed to Html::element()
696 * @return string Raw HTML
697 */
698 public static function hidden( $name, $value, $attribs = array() ) {
699 return self::input( $name, $value, 'hidden', $attribs );
700 }
701
702 /**
703 * Convenience function to produce an "<input>" element.
704 *
705 * This supports leaving out the cols= and rows= which Xml requires and are
706 * required by HTML4/XHTML but not required by HTML5 and will silently set
707 * cols="" and rows="" if $wgHtml5 is false and cols and rows are omitted
708 * (HTML4 validates present but empty cols="" and rows="" as valid).
709 *
710 * @param $name string name attribute
711 * @param $value string value attribute
712 * @param $attribs array Associative array of miscellaneous extra
713 * attributes, passed to Html::element()
714 * @return string Raw HTML
715 */
716 public static function textarea( $name, $value = '', $attribs = array() ) {
717 global $wgHtml5;
718
719 $attribs['name'] = $name;
720
721 if ( !$wgHtml5 ) {
722 if ( !isset( $attribs['cols'] ) ) {
723 $attribs['cols'] = "";
724 }
725
726 if ( !isset( $attribs['rows'] ) ) {
727 $attribs['rows'] = "";
728 }
729 }
730
731 if (substr($value, 0, 1) == "\n") {
732 // Workaround for bug 12130: browsers eat the initial newline
733 // assuming that it's just for show, but they do keep the later
734 // newlines, which we may want to preserve during editing.
735 // Prepending a single newline
736 $spacedValue = "\n" . $value;
737 } else {
738 $spacedValue = $value;
739 }
740 return self::element( 'textarea', $attribs, $spacedValue );
741 }
742 /**
743 * Build a drop-down box for selecting a namespace
744 *
745 * @param $params array:
746 * - selected: [optional] Id of namespace which should be pre-selected
747 * - all: [optional] Value of item for "all namespaces". If null or unset, no "<option>" is generated to select all namespaces
748 * - label: text for label to add before the field
749 * - exclude: [optional] Array of namespace ids to exclude
750 * - disable: [optional] Array of namespace ids for which the option should be disabled in the selector
751 * @param $selectAttribs array HTML attributes for the generated select element.
752 * - id: [optional], default: 'namespace'
753 * - name: [optional], default: 'namespace'
754 * @return string HTML code to select a namespace.
755 */
756 public static function namespaceSelector( array $params = array(), array $selectAttribs = array() ) {
757 global $wgContLang;
758
759 ksort( $selectAttribs );
760
761 // Is a namespace selected?
762 if ( isset( $params['selected'] ) ) {
763 // If string only contains digits, convert to clean int. Selected could also
764 // be "all" or "" etc. which needs to be left untouched.
765 // PHP is_numeric() has issues with large strings, PHP ctype_digit has other issues
766 // and returns false for already clean ints. Use regex instead..
767 if ( preg_match( '/^\d+$/', $params['selected'] ) ) {
768 $params['selected'] = intval( $params['selected'] );
769 }
770 // else: leaves it untouched for later processing
771 } else {
772 $params['selected'] = '';
773 }
774
775 if ( !isset( $params['exclude'] ) || !is_array( $params['exclude'] ) ) {
776 $params['exclude'] = array();
777 }
778 if ( !isset( $params['disable'] ) || !is_array( $params['disable'] ) ) {
779 $params['disable'] = array();
780 }
781
782 // Associative array between option-values and option-labels
783 $options = array();
784
785 if ( isset( $params['all'] ) ) {
786 // add an option that would let the user select all namespaces.
787 // Value is provided by user, the name shown is localized for the user.
788 $options[$params['all']] = wfMessage( 'namespacesall' )->text();
789 }
790 // Add all namespaces as options (in the content langauge)
791 $options += $wgContLang->getFormattedNamespaces();
792
793 // Convert $options to HTML and filter out namespaces below 0
794 $optionsHtml = array();
795 foreach ( $options as $nsId => $nsName ) {
796 if ( $nsId < NS_MAIN || in_array( $nsId, $params['exclude'] ) ) {
797 continue;
798 }
799 if ( $nsId === NS_MAIN ) {
800 // For other namespaces use use the namespace prefix as label, but for
801 // main we don't use "" but the user message descripting it (e.g. "(Main)" or "(Article)")
802 $nsName = wfMessage( 'blanknamespace' )->text();
803 } elseif ( is_int( $nsId ) ) {
804 $nsName = $wgContLang->convertNamespace( $nsId );
805 }
806 $optionsHtml[] = Html::element(
807 'option', array(
808 'disabled' => in_array( $nsId, $params['disable'] ),
809 'value' => $nsId,
810 'selected' => $nsId === $params['selected'],
811 ), $nsName
812 );
813 }
814
815 if ( !array_key_exists( 'id', $selectAttribs ) ) {
816 $selectAttribs['id'] = 'namespace';
817 }
818
819 if ( !array_key_exists( 'name', $selectAttribs ) ) {
820 $selectAttribs['name'] = 'namespace';
821 }
822
823 $ret = '';
824 if ( isset( $params['label'] ) ) {
825 $ret .= Html::element(
826 'label', array(
827 'for' => isset( $selectAttribs['id'] ) ? $selectAttribs['id'] : null,
828 ), $params['label']
829 ) . '&#160;';
830 }
831
832 // Wrap options in a <select>
833 $ret .= Html::openElement( 'select', $selectAttribs )
834 . "\n"
835 . implode( "\n", $optionsHtml )
836 . "\n"
837 . Html::closeElement( 'select' );
838
839 return $ret;
840 }
841
842 /**
843 * Constructs the opening html-tag with necessary doctypes depending on
844 * global variables.
845 *
846 * @param $attribs array Associative array of miscellaneous extra
847 * attributes, passed to Html::element() of html tag.
848 * @return string Raw HTML
849 */
850 public static function htmlHeader( $attribs = array() ) {
851 $ret = '';
852
853 global $wgMimeType;
854
855 if ( self::isXmlMimeType( $wgMimeType ) ) {
856 $ret .= "<?xml version=\"1.0\" encoding=\"UTF-8\" ?" . ">\n";
857 }
858
859 global $wgHtml5, $wgHtml5Version, $wgDocType, $wgDTD;
860 global $wgXhtmlNamespaces, $wgXhtmlDefaultNamespace;
861
862 if ( $wgHtml5 ) {
863 $ret .= "<!DOCTYPE html>\n";
864
865 if ( $wgHtml5Version ) {
866 $attribs['version'] = $wgHtml5Version;
867 }
868 } else {
869 $ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\" \"$wgDTD\">\n";
870 $attribs['xmlns'] = $wgXhtmlDefaultNamespace;
871
872 foreach ( $wgXhtmlNamespaces as $tag => $ns ) {
873 $attribs["xmlns:$tag"] = $ns;
874 }
875 }
876
877 $html = Html::openElement( 'html', $attribs );
878
879 if ( $html ) {
880 $html .= "\n";
881 }
882
883 $ret .= $html;
884
885 return $ret;
886 }
887
888 /**
889 * Determines if the given mime type is xml.
890 *
891 * @param $mimetype string MimeType
892 * @return Boolean
893 */
894 public static function isXmlMimeType( $mimetype ) {
895 switch ( $mimetype ) {
896 case 'text/xml':
897 case 'application/xhtml+xml':
898 case 'application/xml':
899 return true;
900 default:
901 return false;
902 }
903 }
904
905 /**
906 * Get HTML for an info box with an icon.
907 *
908 * @param $text String: wikitext, get this with wfMessage()->plain()
909 * @param $icon String: icon name, file in skins/common/images
910 * @param $alt String: alternate text for the icon
911 * @param $class String: additional class name to add to the wrapper div
912 * @param $useStylePath
913 *
914 * @return string
915 */
916 static function infoBox( $text, $icon, $alt, $class = false, $useStylePath = true ) {
917 global $wgStylePath;
918
919 if ( $useStylePath ) {
920 $icon = $wgStylePath.'/common/images/'.$icon;
921 }
922
923 $s = Html::openElement( 'div', array( 'class' => "mw-infobox $class") );
924
925 $s .= Html::openElement( 'div', array( 'class' => 'mw-infobox-left' ) ).
926 Html::element( 'img',
927 array(
928 'src' => $icon,
929 'alt' => $alt,
930 )
931 ).
932 Html::closeElement( 'div' );
933
934 $s .= Html::openElement( 'div', array( 'class' => 'mw-infobox-right' ) ).
935 $text.
936 Html::closeElement( 'div' );
937 $s .= Html::element( 'div', array( 'style' => 'clear: left;' ), ' ' );
938
939 $s .= Html::closeElement( 'div' );
940
941 $s .= Html::element( 'div', array( 'style' => 'clear: left;' ), ' ' );
942
943 return $s;
944 }
945 }