PageDisplayOutputModifier   A
last analyzed

Complexity

Total Complexity 14

Size/Duplication

Total Lines 90
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 97.22%

Importance

Changes 0
Metric Value
wmc 14
lcom 1
cbo 2
dl 0
loc 90
ccs 35
cts 36
cp 0.9722
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A hideSubpageParent() 0 3 1
A setSubpageByNamespace() 0 3 1
A isSubpage() 0 17 3
A getPageTitle() 0 15 3
A hasEnabledSubpageByNamespace() 0 3 2
A modifyOutput() 0 15 4
1
<?php
2
3
namespace SBL;
4
5
use OutputPage;
6
use Title;
7
use SMW\DataValueFactory;
8
use SMW\DIWikiPage;
9
10
/**
11
 * @license GNU GPL v2+
12
 * @since 1.0
13
 *
14
 * @author mwjames
15
 */
16
class PageDisplayOutputModifier {
17
18
	/**
19
	 * @var boolean
20
	 */
21
	private $hideSubpageParent;
22
23
	/**
24
	 * @var array
25
	 */
26
	private $subpageByNamespace;
27
28
	/**
29
	 * @since  1.0
30
	 *
31
	 * @param boolean $hideSubpageParent
32
	 */
33 4
	public function hideSubpageParent( $hideSubpageParent ) {
34 4
		$this->hideSubpageParent = $hideSubpageParent;
35 4
	}
36
37
	/**
38
	 * @since  1.0
39
	 *
40
	 * @param array $subpageByNamespace
41
	 */
42 4
	public function setSubpageByNamespace( array $subpageByNamespace ) {
43 4
		$this->subpageByNamespace = $subpageByNamespace;
44 4
	}
45
46
	/**
47
	 * @since  1.0
48
	 *
49
	 * @param OutputPage $outputPage
50
	 */
51 4
	public function modifyOutput( OutputPage $outputPage ) {
52
53 4
		$outputPage->addModuleStyles( 'ext.semanticbreadcrumblinks.styles' );
54 4
		$outputPage->addModules( 'ext.semanticbreadcrumblinks' );
55
56 4
		$title = $outputPage->getTitle();
57
58 4
		if ( !$this->hideSubpageParent || !$this->hasEnabledSubpageByNamespace( $title->getNamespace() ) ) {
59 2
			return;
60
		}
61
62 2
		if ( $this->isSubpage( $title ) ) {
63 1
			$outputPage->setPageTitle( $this->getPageTitle( $title ) );
64 1
		}
65 2
	}
66
67 2
	private function isSubpage( Title $title ) {
68
69 2
		if ( !$title->isSubpage() ) {
70
			return false;
71
		}
72
73 2
		$parts = explode( '/', $title->getText() );
74
75 2
		if ( count( $parts ) > 1 ) {
76 1
			unset( $parts[count( $parts ) - 1] );
77 1
		}
78
79 2
		$base = implode( '/', $parts );
80
81
		// #23 (Foo /Bar vs. Foo/ Bar)
82 2
		return substr( $base, -1 ) !== ' ';
83
	}
84
85 1
	private function getPageTitle( Title $title ) {
86
87 1
		$displayTitle = '';
88
89 1
		$dataValue = DataValueFactory::getInstance()->newDataItemValue(
0 ignored issues
show
Deprecated Code introduced by
The method SMW\DataValueFactory::newDataItemValue() has been deprecated with message: since 2.4, use DataValueFactory::newDataValueByItem

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
90 1
			DIWikiPage::newFromTitle( $title )
91 1
		);
92
93
		// 2.4+
94 1
		if ( method_exists( $dataValue , 'getDisplayTitle' ) ) {
95 1
			$displayTitle = $dataValue->getDisplayTitle();
96 1
		}
97
98 1
		return $displayTitle !== '' ? $displayTitle : $title->getSubpageText();
99
	}
100
101 3
	private function hasEnabledSubpageByNamespace( $namespace ) {
102 3
		return isset( $this->subpageByNamespace[ $namespace ] ) && $this->subpageByNamespace[ $namespace ];
103
	}
104
105
}
106