diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-02-09 10:25:57 -0800 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-02-09 10:26:25 -0800 |
commit | 67d855d73499f36f15331e1ff18cccd13aa8aa74 (patch) | |
tree | 92afd91c81f851e78dd87af0e1f6c2f848f5a8b2 /views/default/admin/settings/tidypics | |
parent | 65f6184aec8f6c6e5d053d4cb0e0925b9f536570 (diff) | |
download | elgg-67d855d73499f36f15331e1ff18cccd13aa8aa74.tar.gz elgg-67d855d73499f36f15331e1ff18cccd13aa8aa74.tar.bz2 |
Fixes #16. Removed stats.
Diffstat (limited to 'views/default/admin/settings/tidypics')
-rw-r--r-- | views/default/admin/settings/tidypics/stats.php | 63 |
1 files changed, 0 insertions, 63 deletions
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 @@ -<?php -/** - * Tidypics admin stats page. - */ - -$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); -$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 = '<table class="elgg-table-alt">'; - -foreach ($stats as $str => $value) { - $str = elgg_echo("tidypics:stats:$str"); - $value = (int)$value; - - $content .= <<<HTML - <tr> - <td>$str:</td> - <td>$value</td> - </tr> -HTML; -} - -$content .= '</table>'; - -echo elgg_view_module('inline', elgg_echo('tidypics:stats'), $content);
\ No newline at end of file |