MediaWiki REL1_33
showSiteStats.php
Go to the documentation of this file.
1<?php
2
32require_once __DIR__ . '/Maintenance.php';
33
40 public function __construct() {
41 parent::__construct();
42 $this->addDescription( 'Show the cached statistics' );
43 }
44
45 public function execute() {
46 $fields = [
47 'ss_total_edits' => 'Total edits',
48 'ss_good_articles' => 'Number of articles',
49 'ss_total_pages' => 'Total pages',
50 'ss_users' => 'Number of users',
51 'ss_active_users' => 'Active users',
52 'ss_images' => 'Number of images',
53 ];
54
55 // Get cached stats from a replica DB
56 $dbr = $this->getDB( DB_REPLICA );
57 $stats = $dbr->selectRow( 'site_stats', '*', '', __METHOD__ );
58
59 // Get maximum size for each column
60 $max_length_value = $max_length_desc = 0;
61 foreach ( $fields as $field => $desc ) {
62 $max_length_value = max( $max_length_value, strlen( $stats->$field ) );
63 $max_length_desc = max( $max_length_desc, strlen( $desc ) );
64 }
65
66 // Show them
67 foreach ( $fields as $field => $desc ) {
68 $this->output( sprintf(
69 "%-{$max_length_desc}s: %{$max_length_value}d\n",
70 $desc,
71 $stats->$field
72 ) );
73 }
74 }
75}
76
77$maintClass = ShowSiteStats::class;
78require_once RUN_MAINTENANCE_IF_MAIN;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
addDescription( $text)
Set the description text.
Maintenance script to show the cached statistics.
__construct()
Default constructor.
execute()
Do the actual work.
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25
$maintClass