Extension:SelectTag/pl
SelectTag Status wydania: stabilne |
|
---|---|
Realizacja | Funkcja parsera |
Opis | Adds customisable <select> for inserting text via database fetching. |
Autor(zy) | Khaled El Mansourydyskusja |
Ostatnia wersja | 1.2.0 (2022-11-05) |
Polityka zgodności | Snapshots releases along with MediaWiki. Master nie jest kompatybilny wstecznie. |
MediaWiki | >= 1.35.0 |
Zmiany w bazie danych | Nie |
Licencja | Licencja publiczna GNU General Public License 3.0 lub późniejsza |
Pobieranie | README |
Przykład | ExpressProgs TestWiki |
$wgSelectTag |
|
<select> |
|
Quarterly downloads | 1 (Ranked 131st) |
Przetłumacz rozszerzenie SelectTag jeżeli jest dostępne na translatewiki.net | |
The SelectTag extension that can be used for embedding any kind of text (incl. HTML) into a wiki page via a new tag <select>
tag. It selects the data to be displayed from a database table in the same database as MediaWiki is installed in.
It is fully customisable via the LocalSettings.php file to include as many attributes as needed.
Installation
- Pobierz i umieść plik(i) w katalogu o nazwie
SelectTag
w folderzeextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/SelectTag - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
wfLoadExtension( 'SelectTag' );
- Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Configuration
LocalSettings.php
$wgSelectTag[ 'examplesource' ][ '_dbname' ] = 'exampletbl';
$wgSelectTag[ 'examplesource' ][ 'attr1' ] = 'field1';
$wgSelectTag[ 'examplesource' ][ 'attr2' ] = 'field2';
$wgSelectTag[ 'examplesource' ][ 'attr3' ] = 'field3';
$wgSelectTag[ 'examplesource' ][ '_show' ][ 'show1' ] = 'field4';
$wgSelectTag[ 'examplesource' ][ '_showDefault' ] = 'show1';
Page
<select _source="examplesource" arr1="value1" arr2="value2" arr3="value3" _show="show1" />
Resulting SQL query
SELECT field1, field2, field3 FROM exampletbl
WHERE arr1='value1' AND arr2='value2' AND arr3='value3';