Jump to content

Extension:DonateButton/ko

From mediawiki.org
This page is a translated version of the page Extension:DonateButton and the translation is 4% complete.
미디어위키 확장 기능 설명서
DonateButton
출시 상태: 안정
px
구현 스킨 , 내 위키 ,
설명 Add button with link to a donation page
만든 이 WikiMANNia (WikiForMen토론)
최신 버전 1.9.0 (2026-03-28)
호환성 정책 Master maintains backward compatibility.
MediaWiki 1.35+
PHP 7.3.19+
데이터베이스 변경 아니오
  • $wgDonateButton
  • $wgDonateButtonEnabledPaypal
  • $wgDonateButtonPaypalId
  • $wgDonateButtonPaypalUrl
  • $wgDonateButtonURL
  • $wgDonateButtonLangs
Licence GNU General Public License 2.0 or later
다운로드

The DonateButton extension allows a custom addition of a button with link to a donation page to a wikis sidebar . The button image is automatically adapted according to the language selection.

Use

Install the extension and upload to the wiki a file as specified in $wgDonateButtonFilename. By entering * donatebutton in the MediaWiki:Sidebar , the button can be placed individually.

설치

For recent versions of MediaWiki (1.35+), use the following instruction:

  • 파일을 Check-out the sources with git clone https://github.com/WikiMANNia/MediaWiki-Extension-DonateButton.git하고 DonateButton 폴더를 extensions/ 디렉토리에 넣어 주세요.
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'DonateButton' );
    
  • Yes 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

Installation for older versions of MediaWiki

For MediaWiki 1.25-1.34, replace the above-mentioned "git clone" command with the following: git clone -b REL1_25 https://github.com/WikiMANNia/MediaWiki-Extension-DonateButton.git

Configuration options

Enable the DonateButton. Default is false.

$wgDonateButton = true;

An image with this name should be uploaded on each wiki of your wikifarm.

  • Specify the link to a donation page.
$wgDonateButtonURL = "https://example.org/yourdonationpage.php?lang=";

The link is automatically completed by the code of the language selected by the user or alternatively by the $wgLanguageCode variable.

Localisation

The extension is provided in "de", "en", "es", "fr", "he", "it", "nl", "pt", "ru".

Remarks

  • Branch REL1_25 works from REL1_25 and has been tested up to MediaWiki version REL1_37 .
  • Branch REL1_35 works from REL1_35 and has been tested up to MediaWiki version REL1_43 .
  • The extension was tested with the following MediaWiki versions: 1.35.14, 1.39.11, 1.40.2, 1.41.2, 1.42.3, 1.43.0
  • Configuration of a donation link in skin Minerva Neue .
  • Version 1.5 has some Refactoring:
    Changed “configuration schema”, replaced manifest version 1 with version 2 and changed the prefix of the configuration variables from default to wm.
    Replaced class “DonateButtonHooks” (extends “Hooks”) with class implements interfaces.
  • Version 1.5.1 adds a dirty hack for skin Timeless.
  • Version 1.6.0 has added support for skin Monaco.
  • Version 1.6.1 changed the prefix of the configuration variables back to wg.
  • Version 1.7.0 has added support for skin Citizen.