Extension:InputBox
Language: | English • français • 日本語 • русский • 中文 |
---|
InputBox Release status: stable |
|||
---|---|---|---|
Implementation | Tag, Page action, Search | ||
Description | Allows users to add predefined HTML forms to wiki pages. | ||
Author(s) | Erik Möller (Eloquencetalk) | ||
Latest version | 0.3.0 (2014-11-13) | ||
MediaWiki | 1.19+ | ||
Database changes | No | ||
License | MIT License | ||
Download | |||
|
|||
|
|||
Translate the InputBox extension if it is available at translatewiki.net |
|||
Check usage and version matrix. | |||
Open tasks · Report a bug |
The InputBox extension adds already created HTML forms to wiki pages. Users can "complete" a form (entering text, selecting menu items, etc.) by entering text into the box.
InputBox was originally created by Erik Möller for the purpose of adding a Create an article box to Wikinews.
Contents
Installation[edit]
- Download and place the file(s) in a directory called
InputBox
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php:
wfLoadExtension( 'InputBox' );
Done - Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.24 or earlier:
The instructions above describe the new way of installing extensions using wfLoadExtension()
, since MediaWiki 1.25. If you need to install this extension in earlier versions, instead of wfLoadExtension( 'InputBox' );
, you need to use:
require_once "$IP/extensions/InputBox/InputBox.php";
Example[edit]
Box for starting a new article.
Wiki code[edit]<inputbox> type=create break=no </inputbox> |
Result[edit] |
General syntax[edit]
InputBoxes are constructed like this:
<inputbox> type= bgcolor= width= default= preload= editintro= buttonlabel= hidden= searchbuttonlabel= break= namespaces= prefix= placeholder= preloadparams[]= </inputbox> |
The type parameter is mandatory. All other parameters are optional. preloadparams[] can appear more than once.
Box types[edit]
The default location of the submit button(s) is below the input box. The submit button can be moved to the right by using the line break parameter to eliminate the line break between the input box and the submit button: break=no
Having the submit button to the right is useful for search boxes when search suggestions would otherwise cover up a search button below the search box.
Type | Example | Description |
---|---|---|
type=search |
|
Creates a search box which has a default width of 50 characters. Information added in the text box is searched for. |
type=create |
|
Creates a new page. Information added in the text box is the name of the page which is edited. |
type=comment |
|
Adds a new section to the bottom of the page specified in the text box. |
type=commenttitle |
|
Adds a new section with the section header typed into the text box. The title can be specified with default= parameter. The page has to be specified with page= parameter. Added in rev:42703. |
type=fulltext |
|
Search only with the fulltext search button, without the 'Go' button. Added in rev:45269. |
type=move |
|
Move a page to a different name. Added in gerrit:97559. |
For type=search2 the default location for the search button is to the right. Currently, it does not seem to be possible to add other parameters to this type of input box. This search box searches the entire wiki that it is placed on.
Type | Example |
---|---|
type=search2 |
Parameters[edit]
Parameter | Description | Scope | Compatibility | Example | Result |
---|---|---|---|---|---|
bgcolor= | Sets the table background color (HTML color values). 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 Manual:Creating pages with preloaded text) into the blank editbox when a new page is created. | create, comment, commentitle | ? |
<inputbox> type=create preload=Log </inputbox> |
|
Enter the title of a non-existent page in the example InputBox above or below, and click "Create page" or "New section" 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=Add new rumor </inputbox> |
|
hidden= | This specifies that there is no InputBox. It is used with parameter "default", 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=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=Dig deeper </inputbox> |
|
fulltextbutton= | Show the full text search button on search2 form | search2 | ? |
<inputbox> type=search2 searchbuttonlabel=Dig deeper fulltextbutton=true </inputbox> |
|
labeltext= | Text to print beside the button | search2 | ? |
<inputbox> type=search2 searchbuttonlabel=Dig deeper labeltext=Look for: </inputbox> |
|
break= | Whether or not to insert a line break between the input box and the button(s). Defaults to yes (use a line break). | All types | ? |
<inputbox> type=create width=24 break=no </inputbox> |
|
namespaces= | Support for namespace checkboxes in fulltext search. With "Namespace**" it is checked by default. |
search, fulltext | ? |
<inputbox> type=search namespaces=Main**,Help </inputbox> |
|
prefix= |
Remark: underscores aren't recognised as spaces. |
search, fulltext, create | ? |
<inputbox> type=search prefix={{FULLPAGENAME}}/Archive </inputbox> |
The button below prefixes the name with Special:Mypage/. |
placeholder= | Define placeholder text that will display in the input box when it is empty. | All types | 1.19+ |
<inputbox> type=search placeholder=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 <form> | all | 1.23 for 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 |
Text here: <inputbox> type=search2 inline=true width=10 </inputbox> |
Text here: | |
dir= | Right to left (rtl) or left to right (ltr). Defaults to directionality of the page's language. | all |
<inputbox> dir=rtl type=comment page=Project:Sandbox summary=Foo </inputbox> |
|
|
preloadparams[]= | Specify parameters to the preload text. See Manual:Creating pages with preloaded text#Using parameters. | create, comment, commentitle | 1.25+ |
<inputbox> type=create preload=Log preloadparams[]=param1 preloadparams[]=param2 </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. Works only in main space, it does not allow creating the page in user space. | create, comment |
<inputbox> type=create break=no useve=true </inputbox> |
|
Applying create to an existing page simply gives the edit page. In that case preload is ignored. Applying comment for a new page works.
The texts taken from the MediaWiki: namespace are of course only examples, any existing page can be used for editintro or preload. Unfortunately preload does not yet work for the Special:Upload summary.
Alignment[edit]
If you want to create an inputbox on the right side of the page, do something like:
<div style="float:right;width:42em">
<inputbox>
type=create
</inputbox>
</div>
Parser function[edit]
Using InputBox in a template
In order to create many similar input boxes, InputBox can be used in a template. However, passing template parameters to InputBox parameters only works if the <inputbox>...</inputbox> tag is written as {{#tag:inputbox | ...}} inside the template.
The following example is a template to create a new wiki page from a named template:
{{#tag:inputbox | type=create buttonlabel=Create new {{{1|article}}} preload={{{2|Template:Article}}} }}
When instantiating the template, the first parameter gives the item that is created (default: article) as spelled out in the button, the second parameter gives the name of the template used to create the item (default: Template:Article).
E.g., the code for an input box to create a new project from a project template might look like this:
{{Template:CreateNew|project|Template:Project}}
See also[edit]
- Extension:Create Page
- Extension:CreateArticle
- Extension:CreateBox
- Extension:Preloader
- Extension:DPL Page Name S/N Maker
![]() |
This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page. |
- MIT licensed extensions
- Stable extensions
- MediaWiki extensions without a screenshot
- Tag extensions
- Page action extensions
- Search extensions
- Extensions in Wikimedia version control
- ParserFirstCallInit extensions
- MediaWikiPerformAction extensions
- SpecialPageBeforeExecute extensions
- All extensions
- Extensions used on Wikimedia
- Form extensions
- Page creation extensions
- Search widget extensions
- Edit box extensions