Extension:ShowMe/pl

This extension is professionally maintained by the WikiTeq team.
WikiTeq provides official support for MediaWiki LTS releases only. It may work with other MediaWiki releases.
Category:Extensions by WikiTeq/pl Category:GPL licensed extensions/pl
Podręcznik rozszerzeń MediaWiki
ShowMe
Status wydania: stabilneCategory:Stable extensions/pl
Realizacja Znaczniki Category:Tag extensions/pl
Opis Shows or hides selected elements on the page
Autor(zy) Ike Hecht (tosfosdyskusja)
Opiekun(owie) WikiTeq team
Ostatnia wersja 0.2.0 ()
Polityka zgodności Dla każdego wydania MediaWiki, które jest wydaniem wsparcia długoterminowego, istnieje odpowiednia gałąź w rozszerzeniu.
MediaWiki 1.35, 1.39Category:Extensions with manual MediaWiki version
Zmiany w bazie danych Nie
Licencja Licencja GNU General Public License 2.0 lub nowsza
Pobieranie Category:Extensions in Wikimedia version control/pl
README
Quarterly downloads 0
Przetłumacz rozszerzenie ShowMe jeżeli jest dostępne na translatewiki.net
Problemy Otwarte zadania · Zgłoś błąd
Category:All extensions/pl

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.


Instalacja

  • Pobierz i umieść plik(i) w katalogu o nazwie ShowMe w folderze extensions/.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ShowMe
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'ShowMe' );
    
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Użycie

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.

Examples

<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>
Category:All extensions/pl Category:Extensions by WikiTeq/pl Category:Extensions in Wikimedia version control/pl Category:Extensions with manual MediaWiki version Category:GPL licensed extensions/pl Category:ParserFirstCallInit extensions/pl Category:Stable extensions/pl Category:Tag extensions/pl