From 67d855d73499f36f15331e1ff18cccd13aa8aa74 Mon Sep 17 00:00:00 2001 From: Brett Profitt Date: Thu, 9 Feb 2012 10:25:57 -0800 Subject: Fixes #16. Removed stats. --- views/default/admin/settings/tidypics.php | 9 ---- views/default/admin/settings/tidypics/stats.php | 63 ------------------------- 2 files changed, 72 deletions(-) delete mode 100644 views/default/admin/settings/tidypics/stats.php (limited to 'views/default') diff --git a/views/default/admin/settings/tidypics.php b/views/default/admin/settings/tidypics.php index 7b1764fed..cc9875c3b 100644 --- a/views/default/admin/settings/tidypics.php +++ b/views/default/admin/settings/tidypics.php @@ -20,11 +20,6 @@ echo elgg_view('navigation/tabs', array( 'href' => '/admin/settings/tidypics?tab=server_info', 'selected' => ($tab == 'server_info'), ), - array( - 'text' => elgg_echo('tidypics:stats'), - 'href' => '/admin/settings/tidypics?tab=stats', - 'selected' => ($tab == 'stats'), - ), array( 'text' => elgg_echo('tidypics:settings:image_lib'), 'href' => '/admin/settings/tidypics?tab=image_lib', @@ -48,10 +43,6 @@ switch ($tab) { echo elgg_view('admin/settings/tidypics/server_info'); break; - case 'stats': - echo elgg_view('admin/settings/tidypics/stats'); - break; - case 'image_lib': echo elgg_view('admin/settings/tidypics/image_lib'); break; diff --git a/views/default/admin/settings/tidypics/stats.php b/views/default/admin/settings/tidypics/stats.php deleted file mode 100644 index 25ace77da..000000000 --- a/views/default/admin/settings/tidypics/stats.php +++ /dev/null @@ -1,63 +0,0 @@ -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); -$num_albums = $total->total; -$stats['albums'] = $total->total; - -$options = array( - 'count' => true, - 'type' => 'object', - 'subtype' => 'image', - '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); -} - -$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