aboutsummaryrefslogtreecommitdiff
path: root/pages/settings/statistics.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/settings/statistics.php')
-rw-r--r--pages/settings/statistics.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/pages/settings/statistics.php b/pages/settings/statistics.php
new file mode 100644
index 000000000..9f6fceed0
--- /dev/null
+++ b/pages/settings/statistics.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Elgg user statistics.
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
+
+// Make sure only valid admin users can see this
+gatekeeper();
+
+// Make sure we don't open a security hole ...
+if ((!page_owner_entity()) || (!page_owner_entity()->canEdit())) {
+ set_page_owner(get_loggedin_userid());
+}
+
+$content = elgg_view_title(elgg_echo("usersettings:statistics"));
+$content .= elgg_view("usersettings/statistics");
+
+$body = elgg_view_layout('one_column_with_sidebar', $content);
+
+page_draw(elgg_echo("usersettings:statistics"), $body);