Completed
Push — master ( e70e95...72eb9f )
by Josh
04:30
created

DisallowDisableOutputEscaping   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 20
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A check() 0 10 2
1
<?php
2
3
/**
4
* @package   s9e\TextFormatter
5
* @copyright Copyright (c) 2010-2019 The s9e Authors
6
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
7
*/
8
namespace s9e\TextFormatter\Configurator\TemplateChecks;
9
10
use DOMElement;
11
use DOMXPath;
12
use s9e\TextFormatter\Configurator\Exceptions\UnsafeTemplateException;
13
use s9e\TextFormatter\Configurator\Items\Tag;
14
use s9e\TextFormatter\Configurator\TemplateCheck;
15
16
class DisallowDisableOutputEscaping extends TemplateCheck
17
{
18
	/**
19
	* Check a template for any tag using @disable-output-escaping
20
	*
21
	* @param  DOMElement $template <xsl:template/> node
22
	* @param  Tag        $tag      Tag this template belongs to
23
	* @return void
24
	*/
25 1
	public function check(DOMElement $template, Tag $tag)
26
	{
27 1
		$xpath = new DOMXPath($template->ownerDocument);
28 1
		$node  = $xpath->query('//@disable-output-escaping')->item(0);
29
30 1
		if ($node)
31
		{
32 1
			throw new UnsafeTemplateException("The template contains a 'disable-output-escaping' attribute", $node);
33
		}
34
	}
35
}