mediawiki-extensions-Visual.../VisualEditorMessagesModule.php
Trevor Parscal c40174b60c Changed to use MIT license per agreement with the VisualEditor team
This license change is aimed at maximizing the reusability of this code
in other projects. VisualEditor is more than just an awesome editor for
MediaWiki, it's the new editor for the entire internet.

Added license and author files, plus mentions of the license to all
VisualEditor PHP, JavaScript and CSS files. Parser files have not been
modified but are effectively re-licensed since there's no overriding
license information. 3rd party libraries are not changed, but are all
already MIT licensed.

Change-Id: I895b256325db7c8689756edab34523de4418b0f2
2012-07-19 13:25:45 -07:00

45 lines
1.1 KiB
PHP

<?php
/**
* Resource loader module for certain VisualEditor messages.
*
* @file
* @ingroup Extensions
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Module for user preference customizations
*/
class VisualEditorMessagesModule extends ResourceLoaderModule {
/* Protected Members */
protected $modifiedTime = array();
protected $origin = self::ORIGIN_CORE_INDIVIDUAL;
/* Methods */
public function getScript( ResourceLoaderContext $context ) {
$messages = array(
'summary' => wfMessage( 'summary' )->parse(),
'minoredit' => wfMessage( 'minoredit' )->parse(),
'watchthis' => wfMessage( 'watchthis' )->parse(),
);
return 've.specialMessages = ' .
FormatJson::encode( $messages ) .
';';
}
public function getMessages() {
// We don't actually use the i18n on the client-side, but registering the messages
// is needed to make cache invalidation work
return array( 'summary', 'minoredit', 'watchthis' );
}
public function getDependencies() {
return array( 'ext.visualEditor.base' );
}
}