MediaWiki REL1_31
TextboxBuilder.php
Go to the documentation of this file.
1<?php
26
27use MWNamespace;
28use Sanitizer;
29use Title;
30use User;
31
38
43 public function addNewLineAtEnd( $wikitext ) {
44 if ( strval( $wikitext ) !== '' ) {
45 // Ensure there's a newline at the end, otherwise adding lines
46 // is awkward.
47 // But don't add a newline if the text is empty, or Firefox in XHTML
48 // mode will show an extra newline. A bit annoying.
49 $wikitext .= "\n";
50 return $wikitext;
51 }
52 return $wikitext;
53 }
54
60 public function mergeClassesIntoAttributes( array $classes, array $attribs ) {
61 if ( !count( $classes ) ) {
62 return $attribs;
63 }
64
67 [ 'class' => implode( ' ', $classes ) ]
68 );
69 }
70
75 public function getTextboxProtectionCSSClasses( Title $title ) {
76 $classes = []; // Textarea CSS
77 if ( $title->isProtected( 'edit' ) &&
78 MWNamespace::getRestrictionLevels( $title->getNamespace() ) !== [ '' ]
79 ) {
80 # Is the title semi-protected?
81 if ( $title->isSemiProtected() ) {
82 $classes[] = 'mw-textarea-sprotected';
83 } else {
84 # Then it must be protected based on static groups (regular)
85 $classes[] = 'mw-textarea-protected';
86 }
87 # Is the title cascade-protected?
88 if ( $title->isCascadeProtected() ) {
89 $classes[] = 'mw-textarea-cprotected';
90 }
91 }
92
93 return $classes;
94 }
95
103 public function buildTextboxAttribs( $name, array $customAttribs, User $user, Title $title ) {
105 'accesskey' => ',',
106 'id' => $name,
107 'cols' => 80,
108 'rows' => 25,
109 // Avoid PHP notices when appending preferences
110 // (appending allows customAttribs['style'] to still work).
111 'style' => ''
112 ];
113
114 // The following classes can be used here:
115 // * mw-editfont-monospace
116 // * mw-editfont-sans-serif
117 // * mw-editfont-serif
118 $class = 'mw-editfont-' . $user->getOption( 'editfont' );
119
120 if ( isset( $attribs['class'] ) ) {
121 if ( is_string( $attribs['class'] ) ) {
122 $attribs['class'] .= ' ' . $class;
123 } elseif ( is_array( $attribs['class'] ) ) {
124 $attribs['class'][] = $class;
125 }
126 } else {
127 $attribs['class'] = $class;
128 }
129
130 $pageLang = $title->getPageLanguage();
131 $attribs['lang'] = $pageLang->getHtmlCode();
132 $attribs['dir'] = $pageLang->getDir();
133
134 return $attribs;
135 }
136
137}
This is a utility class with only static functions for dealing with namespaces that encodes all the "...
static getRestrictionLevels( $index, User $user=null)
Determine which restriction levels it makes sense to use in a namespace, optionally filtered by a use...
Helps EditPage build textboxes.
mergeClassesIntoAttributes(array $classes, array $attribs)
buildTextboxAttribs( $name, array $customAttribs, User $user, Title $title)
HTML sanitizer for MediaWiki.
Definition Sanitizer.php:31
static mergeAttributes( $a, $b)
Merge two sets of HTML attributes.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
null means default & $customAttribs
Definition hooks.txt:1995
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2014