Extension:LogoFunctions/pl

Category:GPL licensed extensions/pl
Podręcznik rozszerzeń MediaWiki
LogoFunctions
Status wydania: stabilneCategory:Stable extensions/pl
Realizacja Funkcja parsera Category:Parser function extensions/pl
Opis Adds a parser function about the wiki's logo
Autor(zy) JuneHyeon Bae (*devuntdyskusja)
Ostatnia wersja 2.0 (2019-09-15)
MediaWiki 1.31+Category:Extensions with manual MediaWiki version
PHP 7.0+
Zmiany w bazie danych Nie
Licencja Licencja GNU General Public License 2.0 lub nowsza
Pobieranie Category:Extensions in Wikimedia version control/pl
  • $wgNamespaceLogos
Quarterly downloads 1 (Ranked 106th)
Przetłumacz rozszerzenie LogoFunctions jeżeli jest dostępne na translatewiki.net
Problemy Otwarte zadania · Zgłoś błąd
Category:All extensions/pl

The LogoFunctions extension adds parser functions to override or add stamps to the wiki's logo.

Użycie

#setlogo
{{#setlogo:ExampleLogo.png}}

This sets the logo to file [[File:ExampleLogo.png]]

#stamplogo
{{#stamplogo:Featured.png|190px|top|-1em|-1em}}

This adds a featured article stamp to the logo ([[File:Featured.png]]), 190px wide, -1em from the left, -1em from the top, as seen on uncyclopedia:Page title.

top or bottom options can be used, for up to two stamps applied to the logo on a page.

Instalacja

This extension was broken for several years. Use master or respectively the versions for MediaWiki 1.34 and later once available to install it.
  • Pobierz i umieść plik(i) w katalogu o nazwie LogoFunctions 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/LogoFunctions
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'LogoFunctions' );
    
  • Configure as required.
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Konfiguracja

This extension can be used to set per-namespace logos via configuration by mapping a namespace number to a file available on the wiki:

$wgNamespaceLogos = [
	6 => 'Uncyclomedia Commons.png',
	7 => 'Uncyclomedia Commons.png',
];

The above code added to your "LocalSettings.php" file will set the specified files as logos for the "File" and "File talk" namespace. For these in particular, do remember to protect the files and also to mark them as used to prevent them from being deleted.

Do not use namespace constants but namespace numbers for configuration since the former will not work. See T232952 for further information.
Category:All extensions/pl Category:BeforePageDisplay extensions/pl Category:Extensions in Wikimedia version control/pl Category:Extensions included in Miraheze/pl Category:Extensions included in WikiForge/pl Category:Extensions with manual MediaWiki version Category:GPL licensed extensions/pl Category:ParserFirstCallInit extensions/pl Category:Parser function extensions/pl Category:Stable extensions/pl