사용자:하늘/참고/OO.UI

< 사용자:하늘
하늘 (토론 | 기여)님의 2022년 1월 2일 (일) 17:53 판

Parameters

Parameter Description Scope Compatibility Example Result
arialabel= Supply the aria-label attribute to the inputbox to allow generated markup be accessible to screen readers All types 틀:MW version
<inputbox>
type=search
arialabel=Search the Wiki
</inputbox>
bgcolor= Do not use quotes. All types ?
<inputbox>
type=search
bgcolor=#eeeeff
</inputbox>
width= Sets the width of the InputBox in characters. All types ?
<inputbox>
type=create
width=24
</inputbox>

default= Default text to put in the InputBox. All types ?
<inputbox>
type=comment
default=User talk:Eloquence
</inputbox>

preload= The page under this title will be preloaded (see <tvar name=1>틀:Ll</tvar>) into the blank editbox when a new page is created. create, comment, commenttitle ?
<inputbox>
type=create
preload=Log
</inputbox>

Enter the title of a non-existent page in the example InputBox above or below, and click "<tvar name=create>틀:Int</tvar>" or "<tvar name=new>틀:Int</tvar>" respectively to test this effect.
editintro= The page which is given under this parameter will be shown, as instructions, above the editing window. create, comment ?
<inputbox>
type=comment
editintro=MediaWiki:Missingcommenttext
</inputbox>

buttonlabel= This label will be used for the main button of the form. All types ?
<inputbox>
type=comment
buttonlabel=<translate nowrap> Add new rumor
</inputbox>

hidden= This specifies that there is no InputBox.
It is used with parameter "<tvar name=default>default</tvar>", now not being a default, but the fixed value of the name of the page.
create, comment ?
<inputbox>
type=comment
editintro=Extension:InputBox/editintro comment
preload=Extension:InputBox/preload
hidden=yes
default=Extension talk:InputBox
buttonlabel=<translate nowrap> Post a comment on the talk page
</inputbox>

searchbuttonlabel= This label will be used for the "Search full text" button of the search form. search, fulltext ?
<inputbox>
type=search
searchbuttonlabel=<translate nowrap> Dig deeper
</inputbox>
fulltextbutton= Show the full text search button on search2 form search2 ?
<inputbox>
type=search2
searchbuttonlabel=<translate nowrap> Dig deeper
fulltextbutton=true
</inputbox>
labeltext= Text to print beside the button search2 ?
<inputbox>
type=search2
searchbuttonlabel=<translate nowrap> Dig deeper
labeltext=<translate nowrap> Look for: 
</inputbox>
 
break= Defaults to <tvar name=yes>yes</tvar> (use a line break). All types ?
<inputbox>
type=create
width=24
break=no
</inputbox>
namespaces= Support for namespace checkboxes in fulltext search.
With "<tvar name=main>Main**</tvar>", main article namespace is checked by default.
search, fulltext ?
<inputbox>
type=search
namespaces=Main**,Help
</inputbox>
prefix=


  • Narrow down search to pages beginning with certain prefix. Defaults to empty string (search all pages).


  • Create new page beginning with a certain prefix.


  • In <tvar name=tmove>type=move</tvar>, the prefix is prepended to the default parameter.


Remark: underscores aren't recognized as spaces.

search, fulltext, create ?
<inputbox>
type=search
prefix={{FULLPAGENAME}}/Archive
</inputbox>
The button below prefixes the name with <tvar name=mypage>Special:Mypage/</tvar>.

placeholder= Define placeholder text that will display in the input box when it is empty. All types 틀:MW version
<inputbox>
type=search
placeholder=<translate nowrap> Search this Wiki
</inputbox>
page= Page to posts comment to, or page to move. comment, move
<inputbox>
type=comment
page=Project:Sandbox
</inputbox>

minor= Minor edit. comment, create
<inputbox>
type=comment
page=Project:Sandbox
minor=true
</inputbox>

nosummary= Edit summary (headline) not required for new comment. comment
<inputbox>
type=comment
page=Project:Sandbox
nosummary=true
</inputbox>

summary= Edit summary or move reason. create, move
<inputbox>
type=create
default=Special:Mypage/inputbox test
summary=Foo
</inputbox>

id= id attribute for <tvar name=form><form></tvar>. All types 틀:MW versionfor some types
<inputbox>
type=comment
page=Project:Sandbox
summary=Foo
id=bar
</inputbox>

inline= Make the InputBox be an inline element (no line break at beginning). search2
<translate nowrap> Text here: <inputbox>
type=search2
inline=true
width=10
</inputbox>
Text here:
 
dir= Defaults to directionality of the page's language. All types
<inputbox>
dir=rtl
type=comment
page=Project:Sandbox
summary=Foo
</inputbox>

preloadparams[]= See [[<tvar name=man>Manual:Creating pages with preloaded text#Using parameters</tvar>|Creating pages with preloaded text]]. create, comment, commenttitle 틀:MW version
<inputbox>
type=create
preload=Log
preloadparams[]=param1
preloadparams[]=param2
</inputbox>

searchfilter= Specify parameters to append to the search search 틀:MW version
<inputbox>
type=search
searchfilter=insource:foo
</inputbox>
useve= When creating a page the input box will use the new visual editor, if the extension is installed, and this parameter is set to true. create, comment
<inputbox>
type=create
break=no
useve=true
</inputbox>
Applying <tvar name=create>create</tvar> to an existing page simply gives the edit page.
In that case <tvar name=preload>preload</tvar> is ignored.
Applying <tvar name=comment>comment</tvar> for a new page works.
The texts taken from the <tvar name=mediawiki>MediaWiki:</tvar> namespace are of course only examples, any existing page can be used for <tvar name=editintro>editintro</tvar> or <tvar name=preload>preload</tvar>.
Unfortunately <tvar name=preload>preload</tvar> does not yet work for the [[<tvar name=special>Special:Upload</tvar>|Upload]] summary.