protected function StatsPro::get_data_cnode in Statistics Pro 6.2
Same name and namespace in other branches
- 6 statspro.inc \statspro::get_data_cnode()
Returns the number of nodes changed per day since the last run.
File
- ./
statspro.inc, line 693 - statspro class for Statistics Pro module.
Class
- StatsPro
- Manages the data saving and retrieval according to the user defined parameters.
Code
protected function get_data_cnode() {
$result = db_query('SELECT COUNT(*) AS num, DATE(FROM_UNIXTIME(changed)) AS dategroup
FROM {node}
WHERE changed >= %d
AND created <> changed
GROUP BY dategroup', $this->last_run);
while ($row = db_fetch_array($result)) {
$this
->add_day_data($row['dategroup'], $row['num']);
}
}