diff options
author | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-25 22:18:22 +0000 |
---|---|---|
committer | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-25 22:18:22 +0000 |
commit | 76d3b27335145459e1b9da4e07cf37ad8bd050c1 (patch) | |
tree | 7ac84ed02686061d1ced1e1951598e30334da9c3 /mod/defaultwidgets/profile.php | |
parent | 6a64b7d0b595c97c4bef9a8fa22d567611fb3fd1 (diff) | |
download | elgg-76d3b27335145459e1b9da4e07cf37ad8bd050c1.tar.gz elgg-76d3b27335145459e1b9da4e07cf37ad8bd050c1.tar.bz2 |
Updating administration plugins with admin submenu views.
git-svn-id: http://code.elgg.org/elgg/trunk@6220 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/defaultwidgets/profile.php')
-rw-r--r-- | mod/defaultwidgets/profile.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/mod/defaultwidgets/profile.php b/mod/defaultwidgets/profile.php deleted file mode 100644 index 69640a845..000000000 --- a/mod/defaultwidgets/profile.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** - * Elgg default_widgets plugin. - * - * @package DefaultWidgets - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU - * @author Milan Magudia & Curverider - * @copyright HedgeHogs.net & Curverider Ltd - * - **/ - -// load Elgg engine -require_once (dirname ( dirname ( dirname ( __FILE__ ) ) ) . "/engine/start.php"); - -// make sure only admins can view this -admin_gatekeeper (); -set_context ( 'admin' ); - -// set admin user for user block -set_page_owner ( $_SESSION ['guid'] ); - -// vars required for action gatekeeper -$ts = time (); -$token = generate_action_token ( $ts ); -$context = 'profile'; - -// create the view -$content = elgg_view ( "defaultwidgets/editor", array ('token' => $token, 'ts' => $ts, 'context' => $context ) ); - -// Display main admin menu -page_draw('Default profile widgets for new users', elgg_view_layout('administration', $content)); |