X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FinitStats.inc;h=b1660ce29198932019398190bdf25335fa90bdaf;hb=9924b700593618b67d757160308b78d1644ba2cd;hp=d098bc365be372c178a6fc5ad3298c74ceb9b379;hpb=087a9f70c5c152b72dc6c539cf64e334a0f2d029;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/initStats.inc b/maintenance/initStats.inc index d098bc365b..b1660ce291 100644 --- a/maintenance/initStats.inc +++ b/maintenance/initStats.inc @@ -7,34 +7,34 @@ 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, @@ -53,5 +53,5 @@ function wfInitStats( $options=array() ) { $dbw->insert( 'site_stats', array_merge( $values, $conds, $views ), __METHOD__ ); } - echo( "done.\n" ); + wfOut( "done.\n" ); }