Extension:ContainerFilter/pl

This page is a translated version of the page Extension:ContainerFilter and the translation is 33% complete.
Podręcznik rozszerzeń MediaWiki
ContainerFilter
Status wydania: stabilne
Opis Allows to filter content elements within a page
Autor(zy) Hallo Welt! GmbH
Ostatnia wersja 2.0.0-alpha
Polityka zgodności Dla każdego wydania MediaWiki, które jest wydaniem wsparcia długoterminowego, istnieje odpowiednia gałąź w rozszerzeniu.
MediaWiki 1.39+
Licencja Licencja GNU General Public License 3.0 wyłącznie
Pobieranie
Quarterly downloads 3 (Ranked 136th)
Przetłumacz rozszerzenie ContainerFilter jeżeli jest dostępne na translatewiki.net

You can now mark sections of a page for filtering and display a filter just for the content located within these sections of the page.

Instalacja

  • Pobierz i umieść plik(i) w katalogu o nazwie ContainerFilter 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/ContainerFilter
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'ContainerFilter' );
    
  •   Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Użycie

For use with a table, you must use class=wikitable. Other class definitions are possible:

<containerfilter />
{| class="wikitable sortable"
 ! Item      !! Type 
 |-
 | Apple     || Fruit
 |-
 | Potato    || Vegetable
 |-
 | Pear      || Fruit 
 |-
 | Pumpkin   || Vegetable
 |-
 | Raspberry || Fruit
 |-
 | Spinach   || Vegetable 
 |}

With Semantic MediaWiki

When using Semantic MediaWiki, you can use ContainerFilter with the following syntax:

{{#ask: [[Category:Cities]]
 |format=ul
 |class=filterexample
 |intro=<containerfilter selector=".filterexample li">
 |outro=</containerfilter>
}}