Jump to content

Extension:EditCountNeue/pl

From mediawiki.org
This page is a translated version of the page Extension:EditCountNeue and the translation is 9% complete.
Podręcznik rozszerzeń MediaWiki
EditCountNeue
Status wydania: beta
Realizacja Funkcja parsera , Strona specjalna , API
Opis Retrieves number of edits of a user
Autor(zy) NekoCharmdyskusja
Polityka zgodności Snapshots releases along with MediaWiki. Master nie jest kompatybilny wstecznie.
MediaWiki >=1.35.0
Zmiany w bazie danych Nie
Licencja Licencja GNU General Public License 2.0 lub nowsza
Pobieranie
Translate the EditCountNeue extension

The EditCountNeue extension allows wikis to display the number of edits of a user, via a special page or a parser function. It is inspired by Editcount , and is rewritten to have more functionality and better support for newer versions of MediaWiki. EditCountNeue is a replacement of Editcount, please disable or remove Editcount before enabling EditCountNeue.

Instalacja

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

Użycie

Special page

EditCountNeue adds a special page called Special:EditCount under Użytkownicy i uprawnienia group. Select a user and click to see the number of edits of the user. It can also be accessed from Special:EditCount/<username>.

Parser function

EditCountNeue also adds a parser function to retrieve the number of edits of a user. The syntax is:

{{#editcount: <username> [ | <namespace1> [ | <namespace2> ... ] ] }}

username is required and is the name of the target user.

namespace1, namespace2 and so on are all optional and are the namespace names or namespace numbers of your need. If specified, the function returns the edit number of the specified namespaces. If omitted, returns the edit number of all namespaces.

An invalid username causes the function to return 0 as the result. An invalid namespace behaves as though that namespace argument does not exist. If all specified namespaces are invalid, the function returns 0.

API

EditCountNeue adds one API module list=editcount for query number of edits via API.

Parameters
  • ecuser - The users to retrieve number of edits for.
  • ecnamepsace - Only list number of edits in these namespaces.
Example
api.php?action=query&list=editcount&ecuser=Example

Zobacz też