diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-02-07 18:24:42 -0800 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-02-07 18:24:42 -0800 |
commit | 1c0b514cd009d66544aba2902abc2000f5cb5f43 (patch) | |
tree | 36998a9d088773385a934e378329df7b27f76a05 /views/default/admin/statistics/tidypics.php | |
parent | 6064884c3132e55d69f6def45e618655101ad1c3 (diff) | |
download | elgg-1c0b514cd009d66544aba2902abc2000f5cb5f43.tar.gz elgg-1c0b514cd009d66544aba2902abc2000f5cb5f43.tar.bz2 |
Refs #16. Added server info page.
Diffstat (limited to 'views/default/admin/statistics/tidypics.php')
-rw-r--r-- | views/default/admin/statistics/tidypics.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/views/default/admin/statistics/tidypics.php b/views/default/admin/statistics/tidypics.php index 3e4af782a..25ace77da 100644 --- a/views/default/admin/statistics/tidypics.php +++ b/views/default/admin/statistics/tidypics.php @@ -5,12 +5,14 @@ $stats = array(); +// number of images $img_type = get_subtype_id('object', 'image'); $query = "SELECT count(guid) as total from {$CONFIG->dbprefix}entities where subtype={$img_type}"; $total = get_data_row($query); $num_images = $total->total; $stats['images'] = $total->total; +// number of albums $img_type = get_subtype_id('object', 'album'); $query = "SELECT count(guid) as total from {$CONFIG->dbprefix}entities where subtype={$img_type}"; $total = get_data_row($query); @@ -24,15 +26,19 @@ $options = array( 'annotation_name' => 'generic_comment' ); +// number of comments on photos $stats['photo_comments'] = elgg_get_annotations($options); +// number of comments on albums $options['subtype'] = 'album'; $stats['album_comments'] = elgg_get_annotations($options); +// number of views on images $options['subtype'] = 'image'; $options['annotation_name'] = 'tp_view'; $stats['views'] = elgg_get_annotations($options); +// number of photo tags on images if (elgg_get_plugin_setting('tagging', 'tidypics') != 'disabled') { $options['annotation_name'] = 'phototag'; $stats['tags'] = elgg_get_annotations($options); |