mediawiki-extensions-Thanks/Thanks.php
Kaldari bc369fdf85 Initial version of Thanks extension
See https://www.mediawiki.org/wiki/Extension:Thanks

Change-Id: Ic037f1fcde0f7fa10848c2ed8e31291ad022027d
2013-03-21 11:33:50 -07:00

93 lines
2.8 KiB
PHP

<?php
/**
* Thanks extension
*
* This extension adds 'thank' links that allow users to thank other users for
* specific revisions. It relies on the Echo extension to send the actual thanks.
* For more info see http://mediawiki.org/wiki/Extension:Thanks
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* This program is distributed WITHOUT ANY WARRANTY.
*
* @file
* @ingroup Extensions
* @author Ryan Kaldari
* @license MIT License
*/
$wgExtensionCredits['other'][] = array(
'path' => __FILE__,
'name' => 'Thanks',
'author' => array(
'Ryan Kaldari',
),
'version' => '1.0.0',
'url' => 'https://www.mediawiki.org/wiki/Extension:Thanks',
'descriptionmsg' => 'thanks-desc',
);
/* Setup */
$dir = __DIR__;
// Register files
$wgAutoloadClasses['ThanksHooks'] = $dir . '/Thanks.hooks.php';
$wgAutoloadClasses['EchoThanksFormatter'] = $dir . '/ThanksFormatter.php';
$wgAutoloadClasses['ApiThank'] = $dir . '/ApiThank.php';
$wgExtensionMessagesFiles['Thanks'] = $dir . '/Thanks.i18n.php';
// Register APIs
$wgAPIModules['thank'] = 'ApiThank';
// Register hooks
$wgHooks['HistoryRevisionTools'][] = 'ThanksHooks::insertThankLink';
$wgHooks['DiffRevisionTools'][] = 'ThanksHooks::insertThankLink';
$wgHooks['PageHistoryBeforeList'][] = 'ThanksHooks::onPageHistoryBeforeList';
$wgHooks['DiffViewHeader'][] = 'ThanksHooks::onDiffViewHeader';
$wgHooks['BeforeCreateEchoEvent'][] = 'ThanksHooks::onBeforeCreateEchoEvent';
$wgHooks['EchoGetDefaultNotifiedUsers'][] = 'ThanksHooks::onEchoGetDefaultNotifiedUsers';
// Register modules
$wgResourceModules['ext.thanks'] = array(
'scripts' => array(
'ext.thanks.thank.js',
),
'messages' => array(
'thanks-thanked',
'thanks-error-undefined',
'thanks-error-invalidrevision',
'thanks-error-ratelimited',
),
'dependencies' => array(
'mediawiki.jqueryMsg',
'mediawiki.api',
'user.tokens',
),
'localBasePath' => $dir . '/modules',
'remoteExtPath' => 'Thanks/modules',
);
/* Configuration */
// Enable sending thanks to bots
$wgThanksSendToBots = false;
// Set how many thanks can be sent per minute by a single user (default 10)
$wgRateLimits += array(
'thanks-notification' => array( 'user' => array( 10, 60 ) ),
);
// Set default user options
$wgDefaultUserOptions['echo-subscriptions-web-edit-thank'] = true;
$wgDefaultUserOptions['echo-subscriptions-email-edit-thank'] = true;