diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-14 15:06:29 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-14 15:06:29 +0000 |
commit | 02acf1ee3900beebc050bf5d2e2675c6a29395c8 (patch) | |
tree | 09aebf66ea02f4e8c07e9671faea9f1a780039f2 | |
parent | 0c282356c6dd29765f7f77f11ff23358e2c783a4 (diff) | |
download | elgg-02acf1ee3900beebc050bf5d2e2675c6a29395c8.tar.gz elgg-02acf1ee3900beebc050bf5d2e2675c6a29395c8.tar.bz2 |
owner block added to admin pages
git-svn-id: https://code.elgg.org/elgg/trunk@1920 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | admin/plugins/index.php | 3 | ||||
-rw-r--r-- | admin/site/index.php | 3 | ||||
-rw-r--r-- | admin/statistics/index.php | 4 | ||||
-rw-r--r-- | admin/user/index.php | 19 |
4 files changed, 20 insertions, 9 deletions
diff --git a/admin/plugins/index.php b/admin/plugins/index.php index a464445a4..717e9bde0 100644 --- a/admin/plugins/index.php +++ b/admin/plugins/index.php @@ -18,6 +18,9 @@ // Make sure only valid admin users can see this admin_gatekeeper(); + // Set admin user for user block + set_page_owner($_SESSION['guid']); + // Display main admin menu page_draw(elgg_echo("admin:plugins"),elgg_view_layout("two_column_left_sidebar", '', elgg_view_title(elgg_echo('admin:plugins')) . elgg_view("admin/plugins", array('installed_plugins' => get_installed_plugins())))); diff --git a/admin/site/index.php b/admin/site/index.php index 39df50563..ef35b9dfd 100644 --- a/admin/site/index.php +++ b/admin/site/index.php @@ -17,6 +17,9 @@ // Make sure only valid admin users can see this
admin_gatekeeper();
+ // Set admin user for user block
+ set_page_owner($_SESSION['guid']);
+
// Display main admin menu
page_draw(elgg_echo("admin:site"),elgg_view_layout("two_column_left_sidebar",'', elgg_view_title(elgg_echo('admin:site')) . elgg_view("admin/site")));
diff --git a/admin/statistics/index.php b/admin/statistics/index.php index 593221f6d..dc318eeed 100644 --- a/admin/statistics/index.php +++ b/admin/statistics/index.php @@ -17,7 +17,9 @@ // Make sure only valid admin users can see this admin_gatekeeper(); - + + // Set admin user for user block + set_page_owner($_SESSION['guid']); // Display main admin menu page_draw(elgg_echo("admin:statistics"),elgg_view_layout("two_column_left_sidebar",'',elgg_view_title(elgg_echo('admin:statistics')) . elgg_view("admin/statistics"))); diff --git a/admin/user/index.php b/admin/user/index.php index 87628020f..2f1073d71 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -17,20 +17,23 @@ // Make sure only valid admin users can see this
admin_gatekeeper();
- // Are we performing a search - $search = get_input('s'); - $limit = get_input('limit', 10); - $offset = get_input('offset', 0); - - $context = get_context(); + // Set admin user for user block
+ set_page_owner($_SESSION['guid']);
+
+ // Are we performing a search
+ $search = get_input('s');
+ $limit = get_input('limit', 10);
+ $offset = get_input('offset', 0);
+
+ $context = get_context();
$title = elgg_view_title(elgg_echo('admin:user'));
- set_context('search'); + set_context('search');
$result = list_entities('user');
- set_context('admin'); + set_context('admin');
// Display main admin menu
page_draw(elgg_echo("admin:user"),
|