Difference between revisions of "Mediawiki Extension ShowMe"

From Micylou WIKI
Jump to navigation Jump to search
m (Type fault correction)
m (Added infobox and semantic variables)
Line 3: Line 3:
 
{{Template-uk:Class-Infobox-Software
 
{{Template-uk:Class-Infobox-Software
 
|image = <!-- If an logo is required, enter the link here -->
 
|image = <!-- If an logo is required, enter the link here -->
 +
|Section = [[Section::{{PAGENAME}}]]
 
|Source =  [[Source::DataSource]]<!-- [[Source::DataSource]], [[Source::Semantic Query]], ... -->
 
|Source =  [[Source::DataSource]]<!-- [[Source::DataSource]], [[Source::Semantic Query]], ... -->
 
|Version = [[Version::MW-1.35-LTS]]<!-- [[Version::MW-1.31-LTS]] [[Version::MW-1.35-LTS]]-->
 
|Version = [[Version::MW-1.35-LTS]]<!-- [[Version::MW-1.31-LTS]] [[Version::MW-1.35-LTS]]-->

Revision as of 13:46, 15 February 2021

Template-uk:Class-Infobox-Software

Description

The ShowMe extension allows inserting a dropdown into pages, that will show different elements on the page depending on which option is selected.

Installation

Download

Download and place the file(s) in a directory called ShowMe in your extensions/ folder.

Activation

Add the following code at the bottom of your LocalSettings.php:

wfLoadExtension( 'ShowMe' );

Usage

Use the <showme> tag. It has an optional name parameter, which can set the name and id of the <select> element. Each line between the tags should contain an option. It must consist of the text to be shown, followed by a pipe, followed by the class name of an element (or elements) on the page which should be shown when this option is selected.
While one option is selected, the elements corresponding to all other options become hidden. To avoid flashing of elements that are supposed to be hidden, you can optionally add style="display: none;" to every option other than the first.

Example

Dropdown

<showme type="dropdown">
Text for Option 1|opt-1
And another option|opt-2
</showme>
<div class="opt-1">
Some text shown when clicking the first option.
</div>
<div class="opt-2" style="display: none;">
Here goes the text shown for the second option.
</div>

Unordered list

<showme type="ul">
Text for Option 1|opt-1
And another option|opt-2
</showme>
<div class="opt-1">
Some text shown when clicking the first option.
</div>
<div class="opt-2" style="display: none;">
Here goes the text shown for the second option.
</div>



Back to top of page - Back to Welcome Page