aboutsummaryrefslogtreecommitdiff
path: root/views/default
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-07-30 11:38:40 +0000
committerCash Costello <cash.costello@gmail.com>2009-07-30 11:38:40 +0000
commit0a0fc516dcc7a7770d89c8e8a5dbb2e578850551 (patch)
tree1c929f99ba232574f5233ef7dfb77b66d414ff3c /views/default
parent35d712021886b9ffc1c50ed4e195903cbd6b480c (diff)
downloadelgg-0a0fc516dcc7a7770d89c8e8a5dbb2e578850551.tar.gz
elgg-0a0fc516dcc7a7770d89c8e8a5dbb2e578850551.tar.bz2
added more stats
Diffstat (limited to 'views/default')
-rw-r--r--views/default/tidypics/stats.php25
1 files changed, 23 insertions, 2 deletions
diff --git a/views/default/tidypics/stats.php b/views/default/tidypics/stats.php
index ebaf9a061..8de3415a1 100644
--- a/views/default/tidypics/stats.php
+++ b/views/default/tidypics/stats.php
@@ -10,5 +10,26 @@
$total = get_data_row($query);
$num_albums = $total->total;
- echo $num_images . " Photos in " . $num_albums . " Albums";
-?> \ No newline at end of file
+ $num_comments_photos = count_annotations(0, 'object', 'image', 'generic_comment');
+ $num_comments_albums = count_annotations(0, 'object', 'album', 'generic_comment');
+
+ $num_views = count_annotations(0, 'object', 'image', 'tp_view');
+
+ if (get_plugin_setting('tagging', 'tidypics') != "disabled")
+ $num_tags = count_annotations(0, 'object', 'image', 'phototag');
+?>
+<p>
+<br />
+Photos: <?php echo $num_images; ?><br />
+Albums: <?php echo $num_albums; ?><br />
+Comments on photos: <?php echo $num_comments_photos; ?><br />
+Comments on albums: <?php echo $num_comments_albums; ?><br />
+Total views: <?php echo $num_views; ?><br />
+<?php
+ if ($num_tags) {
+?>
+Photo tags: <?php echo $num_tags; ?><br />
+<?php
+ }
+?>
+</p> \ No newline at end of file