From 6064884c3132e55d69f6def45e618655101ad1c3 Mon Sep 17 00:00:00 2001 From: Brett Profitt Date: Tue, 7 Feb 2012 16:19:51 -0800 Subject: Refs #16. Added stats page. --- views/default/admin/statistics/tidypics.php | 57 +++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 views/default/admin/statistics/tidypics.php (limited to 'views/default/admin') diff --git a/views/default/admin/statistics/tidypics.php b/views/default/admin/statistics/tidypics.php new file mode 100644 index 000000000..3e4af782a --- /dev/null +++ b/views/default/admin/statistics/tidypics.php @@ -0,0 +1,57 @@ +dbprefix}entities where subtype={$img_type}"; +$total = get_data_row($query); +$num_images = $total->total; +$stats['images'] = $total->total; + +$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); +$num_albums = $total->total; +$stats['albums'] = $total->total; + +$options = array( + 'count' => true, + 'type' => 'object', + 'subtype' => 'image', + 'annotation_name' => 'generic_comment' +); + +$stats['photo_comments'] = elgg_get_annotations($options); + +$options['subtype'] = 'album'; +$stats['album_comments'] = elgg_get_annotations($options); + +$options['subtype'] = 'image'; +$options['annotation_name'] = 'tp_view'; +$stats['views'] = elgg_get_annotations($options); + +if (elgg_get_plugin_setting('tagging', 'tidypics') != 'disabled') { + $options['annotation_name'] = 'phototag'; + $stats['tags'] = elgg_get_annotations($options); +} + +$content = ''; + +foreach ($stats as $str => $value) { + $str = elgg_echo("tidypics:stats:$str"); + $value = (int)$value; + + $content .= << + + + +HTML; +} + +$content .= '
$str:$value
'; + +echo elgg_view_module('inline', elgg_echo('tidypics:stats'), $content); \ No newline at end of file -- cgit v1.2.3