MediaWiki-API-Hilfe

Dies ist eine automatisch generierte MediaWiki-API-Dokumentationsseite.

Dokumentation und Beispiele: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

submodule=setsorting

(main | collection | setsorting)

API-Modul zum Neuordnen von Elementen in einer Sammlung

Spezifischer Parameter:
Weitere allgemeine Parameter sind verfügbar.
items

Items should be listed using their old index and ordered by their new position

Dieser Parameter ist erforderlich.
Typ: Liste von Ganzzahlen
Werte mit | trennen oder Alternative.
Die maximale Anzahl von Werten beträgt 50 (500 für Clients, denen höhere Limits erlaubt sind).
Beispiele:
In a collection of 3 items, swap the first and second item
api.php?action=collection&submodule=setsorting&items=1|0|2 [in Spielwiese öffnen]
In a collection of 3 items, make the 3rd item first, and delete the 2nd item
api.php?action=collection-setsorting&items=2|0 [in Spielwiese öffnen]