aboutsummaryrefslogtreecommitdiff
path: root/pages/settings/statistics.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-30 23:04:47 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-30 23:04:47 +0000
commit5d090b23cca3b0f831b29fe4dad2926f1b3b33fc (patch)
tree562058ca452170e1556b26627cbae6ef63ae11f0 /pages/settings/statistics.php
parentdc5813300352f43b0ed67e0811967e1ec12628c3 (diff)
downloadelgg-5d090b23cca3b0f831b29fe4dad2926f1b3b33fc.tar.gz
elgg-5d090b23cca3b0f831b29fe4dad2926f1b3b33fc.tar.bz2
Refs #2344 - moves settings pages into the pages directory
git-svn-id: http://code.elgg.org/elgg/trunk@6986 36083f99-b078-4883-b0ff-0f9b5a30f544
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);