Revisions: Style action links in old revision notices as links
[mediawiki.git] / includes / parser / PPNode_Hash_Text.php
blob63854da01f19facf6763f9ff2361f7d4dfa05095
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.
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.
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
18 * @file
19 * @ingroup Parser
22 namespace MediaWiki\Parser;
24 use InvalidArgumentException;
25 use LogicException;
26 use Stringable;
28 /**
29 * @ingroup Parser
31 // phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
32 class PPNode_Hash_Text implements Stringable, PPNode {
34 /** @var string */
35 public $value;
36 /** @var array */
37 private $store;
38 /** @var int */
39 private $index;
41 /**
42 * Construct an object using the data from $store[$index]. The rest of the
43 * store array can be accessed via getNextSibling().
45 * @param array $store
46 * @param int $index
48 public function __construct( array $store, $index ) {
49 if ( !is_scalar( $store[$index] ) ) {
50 throw new InvalidArgumentException( __CLASS__ . ' given object instead of string' );
52 $this->value = $store[$index];
53 $this->store = $store;
54 $this->index = $index;
57 public function __toString() {
58 return htmlspecialchars( $this->value, ENT_COMPAT );
61 public function getNextSibling() {
62 return PPNode_Hash_Tree::factory( $this->store, $this->index + 1 );
65 public function getChildren() {
66 return false;
69 public function getFirstChild() {
70 return false;
73 public function getChildrenOfType( $name ) {
74 return false;
77 public function getLength() {
78 return false;
81 public function item( $i ) {
82 return false;
85 public function getName() {
86 return '#text';
89 public function splitArg() {
90 // @phan-suppress-previous-line PhanPluginNeverReturnMethod
91 throw new LogicException( __METHOD__ . ': not supported' );
94 public function splitExt() {
95 // @phan-suppress-previous-line PhanPluginNeverReturnMethod
96 throw new LogicException( __METHOD__ . ': not supported' );
99 public function splitHeading() {
100 // @phan-suppress-previous-line PhanPluginNeverReturnMethod
101 throw new LogicException( __METHOD__ . ': not supported' );
105 /** @deprecated class alias since 1.43 */
106 class_alias( PPNode_Hash_Text::class, 'PPNode_Hash_Text' );