Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
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 * Content handler for the pages with code, such as CSS, JavaScript, JSON.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Content
22 */
23
24use MediaWiki\Content\TextContentHandler;
25use MediaWiki\MediaWikiServices;
26use MediaWiki\Title\Title;
27
28/**
29 * Content handler for code content such as CSS, JavaScript, JSON, etc.
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}