From 53349bde3438dfccfc6c32c94e92aca730cc1049 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Tue, 25 Aug 2009 23:36:20 +0000 Subject: restructured admin views --- views/default/tidypics/admin/stats.php | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 views/default/tidypics/admin/stats.php (limited to 'views/default/tidypics/admin/stats.php') diff --git a/views/default/tidypics/admin/stats.php b/views/default/tidypics/admin/stats.php new file mode 100644 index 000000000..8de3415a1 --- /dev/null +++ b/views/default/tidypics/admin/stats.php @@ -0,0 +1,35 @@ +dbprefix}entities where subtype={$img_type}"; + $total = get_data_row($query); + $num_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; + + $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'); +?> +

+
+Photos:
+Albums:
+Comments on photos:
+Comments on albums:
+Total views:
+ +Photo tags:
+ +

\ No newline at end of file -- cgit v1.2.3