Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
CodeContentHandler
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 getPageLanguage
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getPageViewLanguage
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getContentClass
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21namespace MediaWiki\Content;
22
23use LogicException;
24use MediaWiki\Language\Language;
25use MediaWiki\MediaWikiServices;
26use MediaWiki\Title\Title;
27
28/**
29 * Content handler for pages with source code as content (e.g. CSS, JavaScript, or JSON).
30 *
31 * @stable to extend
32 * @since 1.24
33 * @ingroup Content
34 */
35abstract class CodeContentHandler extends TextContentHandler {
36
37    /**
38     * Returns the English language, because code is English, and should be handled as such.
39     *
40     * @stable to override
41     *
42     * @param Title $title
43     * @param Content|null $content
44     *
45     * @return Language
46     *
47     * @see ContentHandler::getPageLanguage()
48     */
49    public function getPageLanguage( Title $title, ?Content $content = null ) {
50        return MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( 'en' );
51    }
52
53    /**
54     * Returns the English language, because code is English, and should be handled as such.
55     *
56     * @stable to override
57     *
58     * @param Title $title
59     * @param Content|null $content
60     *
61     * @return Language
62     *
63     * @see ContentHandler::getPageViewLanguage()
64     */
65    public function getPageViewLanguage( Title $title, ?Content $content = null ) {
66        return MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( 'en' );
67    }
68
69    /** @inheritDoc */
70    protected function getContentClass() {
71        throw new LogicException( 'Subclass must override' );
72    }
73
74}
75/** @deprecated class alias since 1.43 */
76class_alias( CodeContentHandler::class, 'CodeContentHandler' );