Jump to content

Extension:Tabber/pl

From mediawiki.org
This page is a translated version of the page Extension:Tabber and the translation is 12% complete.
Podręcznik rozszerzeń MediaWiki
Tabber
Status wydania: stabilne
Realizacja Znaczniki , Funkcja parsera
Opis Create pages with "Tabs" to dynamically switch between content
Autor(zy) Eric Fortin, Alexia E. Smith
Opiekun(owie) TheKittyCat, MESLewis
Ostatnia wersja 2.4.5 (2026-04-07)
Polityka zgodności Snapshots releases along with MediaWiki. Master nie jest kompatybilny wstecznie.
MediaWiki 1.29+
PHP 5.6+
Licence Licencja GNU General Public License 3.0 lub nowsza
Pobieranie
Przetłumacz rozszerzenie Tabber jeżeli jest dostępne na translatewiki.net

The Tabber extension can assign blocks of content to specified tabs and allow users to dynamically switch between them.

Source code
Source code at GitHub
Bugs
Issue tracker at GitHub
Licensing
Tabber is released under The GNU General Public License, version 3.0.


Instalacja

  • Download i umieść plik(i) w katalogu o nazwie Tabber w swoim katalogu extensions/.
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'Tabber' );
    
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Użycie

Tabs are created as follows: <tabName>=<tabBody>

Tabs are separated by: "|-|"

<tabber>
 tab1=Some neat text here
|-|
 tab2=
 [http://www.google.com Google]<br/>
 [http://www.cnn.com Cnn]<br/>
|-|
 tab3={{Template:SomeTemplate}}
</tabber>

Multiple word tabs

Add &nbsp; between words. Przykład:

<tabber>
 multiple&amp;nbsp;word&amp;nbsp;tab=Some neat text here
</tabber>

Parser functions and conditionals

<tabber>
Tab1 = {{{1|}}}
|-|
Tab2 = {{{2|}}}
</tabber>

Becomes:

{{#tag:tabber|
Tab1={{{1|}}}
{{!}}-{{!}}
Tab2={{{2|}}}
}}

Issues

  • Section editing does not work in Tabbers. If one or more section headers appear in a Tabber, use __NOEDITSECTION__ on that page.

See also