diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-17 15:46:16 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-17 15:46:16 +0000 |
commit | 7184453089f95216643ab697930b020890c65006 (patch) | |
tree | 27a64f6181a3a505e7822e0671617125a104ba02 /settings/statistics.php | |
parent | ab1a4a3daa441fcd2e4d9b37267de3b48fae9d6f (diff) | |
download | elgg-7184453089f95216643ab697930b020890c65006.tar.gz elgg-7184453089f95216643ab697930b020890c65006.tar.bz2 |
Closes #335: Marcus Povey :
* Per user tools settings now present again (only displays if there are settings present AND the plugin is enabled - needs skinning accordingly)
* Re-jigged the settings code to behave like a proper page handler.
* Minor tweak to language
git-svn-id: https://code.elgg.org/elgg/trunk@2279 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'settings/statistics.php')
-rw-r--r-- | settings/statistics.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/settings/statistics.php b/settings/statistics.php new file mode 100644 index 000000000..ba2d5f0f4 --- /dev/null +++ b/settings/statistics.php @@ -0,0 +1,26 @@ +<?php + /** + * Elgg user settings functions. + * + * @package Elgg + * @subpackage Core + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Curverider Ltd + * @copyright Curverider Ltd 2008 + * @link http://elgg.org/ + */ + + // Get the Elgg framework + require_once(dirname(dirname(__FILE__)) . "/engine/start.php"); + + // 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($_SESSION['guid']); + } + + // Display main admin menu + page_draw(elgg_echo("usersettings:statistics"),elgg_view_layout('two_column_left_sidebar','',elgg_view_title(elgg_echo("usersettings:statistics")) . elgg_view("usersettings/statistics"))); +?>
\ No newline at end of file |