summaryrefslogtreecommitdiff
path: root/www/wiki/includes/parser/RemexStripTagHandler.php
blob: 2839147d4f5ffada99ef6eb33798275caf6843e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php

use RemexHtml\Tokenizer\Attributes;
use RemexHtml\Tokenizer\TokenHandler;
use RemexHtml\Tokenizer\Tokenizer;

/**
 * @internal
 */
class RemexStripTagHandler implements TokenHandler {
	private $text = '';
	public function getResult() {
		return $this->text;
	}

	function startDocument( Tokenizer $t, $fns, $fn ) {
		// Do nothing.
	}
	function endDocument( $pos ) {
		// Do nothing.
	}
	function error( $text, $pos ) {
		// Do nothing.
	}
	function characters( $text, $start, $length, $sourceStart, $sourceLength ) {
		$this->text .= substr( $text, $start, $length );
	}
	function startTag( $name, Attributes $attrs, $selfClose, $sourceStart, $sourceLength ) {
		// Do nothing.
	}
	function endTag( $name, $sourceStart, $sourceLength ) {
		// Do nothing.
	}
	function doctype( $name, $public, $system, $quirks, $sourceStart, $sourceLength ) {
		// Do nothing.
	}
	function comment( $text, $sourceStart, $sourceLength ) {
		// Do nothing.
	}
}