Extension:HeadScript/pl

Category:MIT licensed extensions/pl
Podręcznik rozszerzeń MediaWiki
HeadScript
Status wydania: stabilneCategory:Stable extensions/pl
Realizacja Hak Category:Hook extensions/pl
Opis Adds scripts just before </head> of the wiki
Autor(zy)
Ostatnia wersja 1.1.1 (2021-12-03)
MediaWiki >= 1.29.0
Zmiany w bazie danych Nie
Licencja Licencja MIT
Pobieranie Category:Extensions in Wikimedia version control/pl
  • $wgHeadScriptName
  • $wgHeadScriptCode
Quarterly downloads 46 (Ranked 72nd)
Przetłumacz rozszerzenie HeadScript jeżeli jest dostępne na translatewiki.net
Category:All extensions/pl

The HeadScript extension allows scripts to easily be added just before </head> of the wiki.

The code for the head script is defined in "LocalSettings.php" and is controlled by variables. This implementation makes it easy for inexperienced users to implement head scripts just before </head> of the wiki. It also makes it possible to add head scripts that cannot be changed or removed, such as would be possible by wiki Administratorzy if the head script were added to the Sitenotice. This makes the extension particularly useful for placing Cookie Consent plugin or CSS style links, as such content cannot be removed by abusive or rogue administrators.


Instalacja

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

Konfiguracja

One or more head scripts can be added to the wiki. The head scripts can consist of any HTML and/or JavaScript.

To configure the head script, add the following to "LocalSettings.php" after the installation line:

$wgHeadScriptCode = <<<'START_END_MARKER'
<script></script>
START_END_MARKER;

Leave untouched the first and last line with START_END_MARKER stuff, this is a special syntax of PHP (without it, it would be tricky to deal with apostrophes inside the script). Do not add whitespaces around the last line’s marker, it would break it (more details about this syntax). Do add new line after.

To add additional scripts, simply include them between the markers:

$wgHeadScriptCode = <<<'START_END_MARKER'
<script></script>
<script></script>
<script></script>
START_END_MARKER;

You may specify a name for the script too if needed, add the following after the installation line:

$wgHeadScriptName = 'my-wonderful-script';

META and LINK elements can also be added, such as:

$wgHeadScriptCode = <<<'START_END_MARKER'
<meta name="author" content="Wikimedia Foundation" />
<link rel="author" type="text/plain" href="/humans.txt" />
<script></script>
START_END_MARKER;

See also

Category:BeforePageDisplay extensions/pl Category:HTML head extensions/pl
Category:All extensions/pl Category:BeforePageDisplay extensions/pl Category:Extensions in Wikimedia version control/pl Category:HTML head extensions/pl Category:Hook extensions/pl Category:MIT licensed extensions/pl Category:Stable extensions/pl