Erweiterung:ShowMe
![]() Freigabestatus: stabil |
|
---|---|
![]() |
|
Einbindung | Tag |
Beschreibung | Shows or hides selected elements on the page |
Autor(en) | Ike Hecht (tosfosDiskussion) |
Betreuer | WikiTeq team |
Letzte Version | 0.2.0 () |
Kompatibilitätspolitik | Für jede MediaWiki-Version, die ein Long Term Support Release ist, existiert ein entsprechender Zweig in der Erweiterung. |
MediaWiki | 1.35, 1.39 |
Datenbankänderungen | Nein |
Lizenz | GNU General Public License 2.0 oder neuer |
Herunterladen | README |
Quarterly downloads | 5 (Ranked 169th) |
Übersetze die ShowMe-Erweiterung, wenn sie auf translatewiki.net verfügbar ist | |
Probleme | Offene Aufgaben · Einen Fehler melden |
The ShowMe extension allows inserting a drop down or unordered list into pages, that will show different elements on the page depending on which option is selected.
This extension was created for WikiWorks.
Installation
- Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens
ShowMe
im Ordnerextensions/
ablegen. - Folgenden Code am Ende der
LocalSettings.php
einfügen:wfLoadExtension( 'ShowMe' );
- Erledigt – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.
Verwendung
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.
Beispiele
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>
Galerie
-
Screenshot of extension with first option selected
-
Screenshot of this extension with second option selected