Change some more to parent::
[lhc/web/wiklou.git] / maintenance / language / StatOutputs.php
1 <?php
2 if ( !defined( 'MEDIAWIKI' ) ) die();
3 /**
4 * Statistic output classes.
5 *
6 * @file
7 * @ingroup MaintenanceLanguage
8 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
9 * @author Ashar Voultoiz <thoane@altern.org>
10 */
11
12 /** A general output object. Need to be overriden */
13 class statsOutput {
14 function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
15 return @sprintf( '%.' . $accuracy . 'f%%', 100 * $subset / $total );
16 }
17
18 # Override the following methods
19 function heading() {
20 }
21 function footer() {
22 }
23 function blockstart() {
24 }
25 function blockend() {
26 }
27 function element( $in, $heading = false ) {
28 }
29 }
30
31 /** Outputs WikiText */
32 class wikiStatsOutput extends statsOutput {
33 function heading() {
34 $version = SpecialVersion::getVersion( 'nodb' );
35 echo "'''Statistics are based on:''' <code>" . $version . "</code>\n\n";
36 echo "'''Note:''' These statistics can be generated by running <code>php maintenance/language/transstat.php</code>.\n\n";
37 echo "For additional information on specific languages (the message names, the actual problems, etc.), run <code>php maintenance/language/checkLanguage.php --lang=foo</code>.\n\n";
38 echo '{| class="sortable wikitable" border="2" cellpadding="4" cellspacing="0" style="background-color: #F9F9F9; border: 1px #AAAAAA solid; border-collapse: collapse; clear:both;" width="100%"' . "\n";
39 }
40 function footer() {
41 echo "|}\n";
42 }
43 function blockstart() {
44 echo "|-\n";
45 }
46 function blockend() {
47 echo '';
48 }
49 function element( $in, $heading = false ) {
50 echo ( $heading ? '!' : '|' ) . "$in\n";
51 }
52 function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
53 $v = @round( 255 * $subset / $total );
54 if ( $revert ) {
55 $v = 255 - $v;
56 }
57 if ( $v < 128 ) {
58 # Red to Yellow
59 $red = 'FF';
60 $green = sprintf( '%02X', 2 * $v );
61 } else {
62 # Yellow to Green
63 $red = sprintf( '%02X', 2 * ( 255 - $v ) );
64 $green = 'FF';
65 }
66 $blue = '00';
67 $color = $red . $green . $blue;
68
69 $percent = parent::formatPercent( $subset, $total, $revert, $accuracy );
70 return 'bgcolor="#' . $color . '"|' . $percent;
71 }
72 }
73
74 /** Output text. To be used on a terminal for example. */
75 class textStatsOutput extends statsOutput {
76 function element( $in, $heading = false ) {
77 echo $in . "\t";
78 }
79 function blockend() {
80 echo "\n";
81 }
82 }
83
84 /** csv output. Some people love excel */
85 class csvStatsOutput extends statsOutput {
86 function element( $in, $heading = false ) {
87 echo $in . ";";
88 }
89 function blockend() {
90 echo "\n";
91 }
92 }