<?php\r
- echo 'Stats go here';\r
+\r
+ $img_type = get_subtype_id('object', 'image');\r
+ $query = "SELECT count(guid) as total from {$CONFIG->dbprefix}entities where subtype={$img_type}";\r
+ $total = get_data_row($query);\r
+ $num_images = $total->total;\r
+ \r
+ $img_type = get_subtype_id('object', 'album');\r
+ $query = "SELECT count(guid) as total from {$CONFIG->dbprefix}entities where subtype={$img_type}";\r
+ $total = get_data_row($query);\r
+ $num_albums = $total->total;\r
+\r
+ echo $num_images . " Photos in " . $num_albums . " Albums";\r
?>
\ No newline at end of file