wiki.techinc.nl/maintenance/showJobs.php
2009-02-05 08:13:57 +00:00

18 lines
344 B
PHP

<?php
/**
* Based on runJobs.php
*
* Report number of jobs currently waiting in master database.
*
* @file
* @ingroup Maintenance
* @author Tim Starling
* @author Ashar Voultoiz
*/
require_once( 'commandLine.inc' );
$dbw = wfGetDB( DB_MASTER );
$count = $dbw->selectField( 'job', 'count(*)', '', 'runJobs.php' );
print $count."\n";