Extension:DiscordNotifications/de-formal

This page is a translated version of the page Extension:DiscordNotifications and the translation is 10% complete.
MediaWiki extensions manual
Discord Notifications
Release status: stable
Implementation User interface, Notify
Description Sends notifications of actions in MediaWiki like adding, removing or deleting an article into Discord channel
Author(s) Aleksi Postari (kulttuuriDiskussion)
Maintainer(s) Universal OmegaDiskussion
Latest version 1.1.3 (2020-05-14)
MediaWiki 1.25+
PHP 5.2+
Database changes No
License MIT License
Download

  • $wgDiscordIncomingWebhookUrl
  • $wgDiscordFromName
  • $wgDiscordSendMethod
  • $wgDiscordNotificationWikiUrl
  • $wgDiscordNotificationWikiUrlEnding
Translate the DiscordNotifications extension

Integrate Discord with MediaWiki. The DiscordNotifications extension sends notifications of actions in MediaWiki like adding, removing or deleting an article into designated Discord channel(s).

Installation

  • Die Download und die Datei(en) in ein Verzeichnis namens DiscordNotifications im Ordner extensions/ ablegen.
  • Folgenden Code am Ende Ihrer LocalSettings.php -Datei hinzufügen:
    wfLoadExtension( 'DiscordNotifications' );
    // Required. Your Discord incoming webhook URL. Read more from here: https://support.discordapp.com/hc/en-us/articles/228383668
    $wgDiscordIncomingWebhookUrl = "";
    // Required. Name the message will appear be sent from.
    $wgDiscordFromName = "Wiki";
    // URL into your MediaWiki installation with the trailing /.
    $wgDiscordNotificationWikiUrl = "http://your_wiki_url/";
    // Wiki script name. Leave this to default one if you do not have URL rewriting enabled.
    $wgDiscordNotificationWikiUrlEnding = "index.php?title=";
    // What method will be used to send the data to Discord server. By default this is "curl" which only works if you have the curl extension enabled. This can be: "curl" or "file_get_contents". Default: "curl"
    $wgDiscordSendMethod = "curl";
    
  •   Done – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Configuration parameters

Please read the project README file for more configuration options.

Siehe auch