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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<?php
namespace SMW\MediaWiki\Hooks;
use SMW\Application;
use SMW\DataTypeRegistry;
use Language;
/**
* Add extra statistic at the end of Special:Statistics
*
* @see https://www.mediawiki.org/wiki/Manual:Hooks/SpecialStatsAddExtra
*
* @ingroup FunctionHook
*
* @license GNU GPL v2+
* @since 1.9
*
* @author mwjames
*/
class SpecialStatsAddExtra {
/**
* @var array
*/
protected $extraStats = null;
/**
* @var string
*/
protected $version = null;
/**
* @var Language
*/
protected $userLanguage;
/**
* @var string[]
*/
protected $legacyMessageMapper = array(
'PROPUSES' => 'smw-statistics-property-instance',
'USEDPROPS' => 'smw-statistics-property-total-legacy',
'OWNPAGE' => 'smw-statistics-property-page',
'DECLPROPS' => 'smw-statistics-property-type',
'SUBOBJECTS' => 'smw-statistics-subobject-count',
'QUERY' => 'smw-statistics-query-inline',
'CONCEPTS' => 'smw-statistics-concept-count-legacy'
);
/**
* @var string[]
*/
protected $messageMapper = array(
'PROPUSES' => 'smw-statistics-property-instance',
'USEDPROPS' => 'smw-statistics-property-total',
'OWNPAGE' => 'smw-statistics-property-page',
'DECLPROPS' => 'smw-statistics-property-type',
'SUBOBJECTS' => 'smw-statistics-subobject-count',
'QUERY' => 'smw-statistics-query-inline',
'CONCEPTS' => 'smw-statistics-concept-count'
);
/**
* @since 1.9
*
* @param array &$extraStats
* @param string $version
* @param Language $userLanguage User language
*/
public function __construct( array &$extraStats, $version, Language $userLanguage ) {
$this->extraStats =& $extraStats;
$this->version = $version;
$this->userLanguage = $userLanguage;
}
/**
* @since 1.9
*
* @return true
*/
public function process() {
return version_compare( $this->version, '1.21', '<' ) ? $this->copyLegacyStatistics() : $this->copyStatistics();
}
/**
* @since 1.9
*
* @return true
*/
protected function copyStatistics() {
$statistics = Application::getInstance()->getStore()->getStatistics();
$this->extraStats['smw-statistics'] = array();
foreach ( $this->messageMapper as $key => $message ) {
if ( isset( $statistics[$key] ) ) {
$this->extraStats['smw-statistics'][ $message ] = $statistics[$key];
}
}
$count = count( DataTypeRegistry::getInstance()->getKnownTypeLabels() );
$this->extraStats['smw-statistics']['smw-statistics-datatype-count'] = $count;
return true;
}
/**
* Legacy approach to display statistical items for all MW 1.21- versions
*
* @since 1.9
*
* @return true
*/
protected function copyLegacyStatistics() {
$statistics = Application::getInstance()->getStore()->getStatistics();
foreach ( $this->legacyMessageMapper as $key => $message ) {
if ( isset( $statistics[$key] ) ) {
$this->extraStats[wfMessage( $message )->text()] = $this->userLanguage->formatNum( $statistics[$key] );
}
}
return true;
}
}
|