45 lines
No EOL
1.1 KiB
PHP
45 lines
No EOL
1.1 KiB
PHP
<?php
|
|
|
|
# XXX: make ScriptContentHandler base class, do highlighting stuff there?
|
|
|
|
/**
|
|
* @since 1.21
|
|
*/
|
|
class JavaScriptContentHandler extends TextContentHandler {
|
|
|
|
public function __construct( $modelId = CONTENT_MODEL_JAVASCRIPT ) {
|
|
parent::__construct( $modelId, array( CONTENT_FORMAT_JAVASCRIPT ) );
|
|
}
|
|
|
|
public function unserializeContent( $text, $format = null ) {
|
|
$this->checkFormat( $format );
|
|
|
|
return new JavaScriptContent( $text );
|
|
}
|
|
|
|
public function makeEmptyContent() {
|
|
return new JavaScriptContent( '' );
|
|
}
|
|
|
|
/**
|
|
* Returns the english language, because JS is english, and should be handled as such.
|
|
*
|
|
* @return Language wfGetLangObj( 'en' )
|
|
*
|
|
* @see ContentHandler::getPageLanguage()
|
|
*/
|
|
public function getPageLanguage( Title $title, Content $content = null ) {
|
|
return wfGetLangObj( 'en' );
|
|
}
|
|
|
|
/**
|
|
* Returns the english language, because CSS is english, and should be handled as such.
|
|
*
|
|
* @return Language wfGetLangObj( 'en' )
|
|
*
|
|
* @see ContentHandler::getPageViewLanguage()
|
|
*/
|
|
public function getPageViewLanguage( Title $title, Content $content = null ) {
|
|
return wfGetLangObj( 'en' );
|
|
}
|
|
} |