2011-03-29 17:51:22 +00:00
|
|
|
<?php
|
|
|
|
|
2011-04-01 09:29:04 +00:00
|
|
|
require_once 'common.php';
|
2011-03-29 17:51:22 +00:00
|
|
|
|
2011-04-01 09:29:04 +00:00
|
|
|
$db = Db::getInstance();
|
2011-03-29 17:51:22 +00:00
|
|
|
|
2011-04-01 09:29:04 +00:00
|
|
|
$rows = $db->getRows($db->q("SELECT status, count(*) as cnt FROM beathaven.queue GROUP BY status"));
|
2011-03-29 17:51:22 +00:00
|
|
|
|
2011-04-01 09:29:04 +00:00
|
|
|
$info = array_fill(0, 3, array());
|
2011-03-29 17:51:22 +00:00
|
|
|
|
2011-04-01 09:29:04 +00:00
|
|
|
foreach ($rows as $row) {
|
|
|
|
$info[$row['status']] = $row['cnt'];
|
2011-03-29 17:51:22 +00:00
|
|
|
}
|
|
|
|
|
2011-04-01 09:29:04 +00:00
|
|
|
print_r($info);
|