diff options
author | zotlabs <mike@macgirvin.com> | 2017-07-13 21:46:21 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-07-13 21:46:21 -0700 |
commit | 77f71303f21e7690f75c33f54dc84033921102aa (patch) | |
tree | 894c4d6365552825c7d71011804550860ec43981 /include/statistics_fns.php | |
parent | 266dab1b593a93d49ad97ab0cad9022486ba4c7f (diff) | |
download | volse-hubzilla-77f71303f21e7690f75c33f54dc84033921102aa.tar.gz volse-hubzilla-77f71303f21e7690f75c33f54dc84033921102aa.tar.bz2 volse-hubzilla-77f71303f21e7690f75c33f54dc84033921102aa.zip |
update some addon docs and ensure we only generate statistics once a day
Diffstat (limited to 'include/statistics_fns.php')
-rw-r--r-- | include/statistics_fns.php | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/include/statistics_fns.php b/include/statistics_fns.php index cbff3b0b7..d213485bf 100644 --- a/include/statistics_fns.php +++ b/include/statistics_fns.php @@ -7,7 +7,7 @@ function update_channels_total_stat() { $channels_total_stat = intval($r[0]['channels_total']); set_config('system','channels_total_stat',$channels_total_stat); } else { - set_config('system','channels_total_stat',null); + set_config('system','channels_total_stat',0); } } @@ -30,10 +30,10 @@ function update_channels_active_halfyear_stat() { $channels_active_halfyear_stat = count($x); set_config('system','channels_active_halfyear_stat',$channels_active_halfyear_stat); } else { - set_config('system','channels_active_halfyear_stat',null); + set_config('system','channels_active_halfyear_stat',0); } } else { - set_config('system','channels_active_halfyear_stat',null); + set_config('system','channels_active_halfyear_stat',0); } } @@ -56,10 +56,10 @@ function update_channels_active_monthly_stat() { $channels_active_monthly_stat = count($x); set_config('system','channels_active_monthly_stat',$channels_active_monthly_stat); } else { - set_config('system','channels_active_monthly_stat',null); + set_config('system','channels_active_monthly_stat',0); } } else { - set_config('system','channels_active_monthly_stat',null); + set_config('system','channels_active_monthly_stat',0); } } @@ -69,8 +69,16 @@ function update_local_posts_stat() { $local_posts_stat = intval($posts[0]["local_posts"]); set_config('system','local_posts_stat',$local_posts_stat); } else { - set_config('system','local_posts_stat',null); + set_config('system','local_posts_stat',0); } } +function update_local_comments_stat() { + $posts = q("SELECT COUNT(*) AS local_posts FROM item WHERE item_wall = 1 and id != parent"); + if (!is_array($posts)) + $local_posts = 0; + else + $local_posts = $posts[0]["local_posts"]; + set_config('system','local_comments_stat', $local_posts); +}
\ No newline at end of file |