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 JS 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' ); } }