summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/scripts/TranslateStatsOutput.php
blob: 24398b1bb82c2a5b21f6fabbbd2577af7ab7ec18 (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
<?php

/**
 * Provides heading, summaryheading and free text addition for stats output in
 * wiki format.
 *
 * @ingroup Stats
 */
class TranslateStatsOutput extends WikiStatsOutput {
	function heading() {
		echo '{| class="mw-ext-translate-groupstatistics sortable wikitable" border="2" ' .
			'cellpadding="4" cellspacing="0" style="background-color: #F9F9F9; border: ' .
			'1px #AAAAAA solid; border-collapse: collapse; clear:both;" width="100%"' . "\n";
	}

	function summaryheading() {
		echo "\n" . '{| class="mw-ext-translate-groupstatistics sortable wikitable" ' .
			'border="2" cellpadding="4" cellspacing="0" style="background-color: #F9F9F9; ' .
			'border: 1px #AAAAAA solid; border-collapse: collapse; clear:both;"' . "\n";
	}

	function addFreeText( $freeText ) {
		echo $freeText;
	}
}