Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 7
CRAP
0.00% covered (danger)
0.00%
0 / 1
MediaTransformError
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 7
56
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 toHtml
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 toText
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getHtmlMsg
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getMsg
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 isError
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getHttpStatusCode
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * Base class for the output of file transformation methods.
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 Media
22 */
23
24/**
25 * Basic media transform error class
26 *
27 * @newable
28 * @stable to extend
29 * @ingroup Media
30 */
31class MediaTransformError extends MediaTransformOutput {
32    /** @var Message */
33    private $msg;
34
35    /**
36     * @stable to call
37     *
38     * @param string $msg
39     * @param int $width
40     * @param int $height
41     * @param mixed ...$args
42     */
43    public function __construct( $msg, $width, $height, ...$args ) {
44        $this->msg = wfMessage( $msg )->params( $args );
45        $this->width = (int)$width;
46        $this->height = (int)$height;
47        $this->url = false;
48        $this->path = false;
49    }
50
51    public function toHtml( $options = [] ) {
52        return "<div class=\"MediaTransformError\" style=\"" .
53            "width: {$this->width}px; height: {$this->height}px; display:inline-block;\">" .
54            $this->getHtmlMsg() .
55            "</div>";
56    }
57
58    public function toText() {
59        return $this->msg->text();
60    }
61
62    public function getHtmlMsg() {
63        return $this->msg->escaped();
64    }
65
66    public function getMsg() {
67        return $this->msg;
68    }
69
70    public function isError() {
71        return true;
72    }
73
74    /**
75     * @stable to override
76     *
77     * @return int
78     */
79    public function getHttpStatusCode() {
80        return 500;
81    }
82}