Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
| HTMLHorizontalRuleField | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
| getLabel | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| getInputHTML | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * This file is part of the MediaWiki extension BetaFeatures. |
| 4 | * |
| 5 | * BetaFeatures 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 | * BetaFeatures 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 |
| 16 | * along with BetaFeatures. If not, see <http://www.gnu.org/licenses/>. |
| 17 | * |
| 18 | * HTML horizontal rule field |
| 19 | * |
| 20 | * @file |
| 21 | * @ingroup Extensions |
| 22 | * @copyright 2013 Mark Holmquist and others; see AUTHORS |
| 23 | * @license GPL-2.0-or-later |
| 24 | */ |
| 25 | |
| 26 | namespace MediaWiki\Extension\BetaFeatures; |
| 27 | |
| 28 | use MediaWiki\Html\Html; |
| 29 | use MediaWiki\HTMLForm\HTMLFormField; |
| 30 | |
| 31 | class HTMLHorizontalRuleField extends HTMLFormField { |
| 32 | |
| 33 | /** |
| 34 | * This field type is meant to be used for a block of text, so |
| 35 | * the right-aligned label style doesn't really apply. |
| 36 | * @return string |
| 37 | */ |
| 38 | public function getLabel() { |
| 39 | return ' '; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Pretty much ignores its arguments and returns a raw HR tag. |
| 44 | * @param string $value |
| 45 | * @return string |
| 46 | */ |
| 47 | public function getInputHTML( $value ) { |
| 48 | return Html::element( 'hr', [] ); |
| 49 | } |
| 50 | } |