Localization update for he.
[lhc/web/wiklou.git] / maintenance / initStats.inc
index 673742e..b1660ce 100644 (file)
@@ -1,36 +1,40 @@
 <?php
+/**
+ * @file
+ * @ingroup Maintenance
+ */
 
 function wfInitStats( $options=array() ) {
        $dbr = wfGetDB( DB_SLAVE );
 
-       echo "Counting total edits...";
+       wfOut( "Counting total edits..." );
        $edits = $dbr->selectField( 'revision', 'COUNT(*)', '', __METHOD__ );
        $edits += $dbr->selectField( 'archive', 'COUNT(*)', '', __METHOD__ );
-       echo "{$edits}\nCounting number of articles...";
+       wfOut( "{$edits}\nCounting number of articles..." );
 
        global $wgContentNamespaces;
        $good  = $dbr->selectField( 'page', 'COUNT(*)', array( 'page_namespace' => $wgContentNamespaces, 'page_is_redirect' => 0, 'page_len > 0' ), __METHOD__ );
-       echo "{$good}\nCounting total pages...";
+       wfOut( "{$good}\nCounting total pages..." );
 
        $pages = $dbr->selectField( 'page', 'COUNT(*)', '', __METHOD__ );
-       echo "{$pages}\nCounting number of users...";
+       wfOut( "{$pages}\nCounting number of users..." );
 
        $users = $dbr->selectField( 'user', 'COUNT(*)', '', __METHOD__ );
-       echo "{$users}\nCounting number of admins...";
+       wfOut( "{$users}\nCounting number of admins..." );
 
        $admin = $dbr->selectField( 'user_groups', 'COUNT(*)', array( 'ug_group' => 'sysop' ), __METHOD__ );
-       echo "{$admin}\nCounting number of images...";
+       wfOut( "{$admin}\nCounting number of images..." );
 
        $image = $dbr->selectField( 'image', 'COUNT(*)', '', __METHOD__ );
-       echo "{$image}\n";
+       wfOut( "{$image}\n" );
 
        if( !isset( $options['noviews'] ) ) {
-               echo "Counting total page views...";
+               wfOut( "Counting total page views..." );
                $views = $dbr->selectField( 'page', 'SUM(page_counter)', '', __METHOD__ );
-               echo "{$views}\n";
+               wfOut( "{$views}\n" );
        }
 
-       echo "\nUpdating site statistics...";
+       wfOut( "\nUpdating site statistics..." );
 
        $dbw = wfGetDB( DB_MASTER );
        $values = array( 'ss_total_edits' => $edits,
@@ -49,7 +53,5 @@ function wfInitStats( $options=array() ) {
                $dbw->insert( 'site_stats', array_merge( $values, $conds, $views ), __METHOD__ );
        }
 
-       echo( "done.\n" );
+       wfOut( "done.\n" );
 }
-
-?>
\ No newline at end of file