diff options
Diffstat (limited to 'admin')
-rw-r--r-- | admin/index.php | 36 | ||||
-rw-r--r-- | admin/plugins.php | 6 | ||||
-rw-r--r-- | admin/site.php | 46 | ||||
-rw-r--r-- | admin/user.php | 88 |
4 files changed, 88 insertions, 88 deletions
diff --git a/admin/index.php b/admin/index.php index 969d91f7e..98466cb20 100644 --- a/admin/index.php +++ b/admin/index.php @@ -1,21 +1,21 @@ -<?php
-
- /**
- * Elgg administration system index
- *
- * @package Elgg
- * @subpackage Core
+<?php - * @author Curverider Ltd
+ /** + * Elgg administration system index + * + * @package Elgg + * @subpackage Core - * @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
- admin_gatekeeper();
- forward('pg/admin/statistics/')
-
+ * @author Curverider Ltd + + * @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 + admin_gatekeeper(); + forward('pg/admin/statistics/') + ?>
\ No newline at end of file diff --git a/admin/plugins.php b/admin/plugins.php index dcf0fead0..9900c98e9 100644 --- a/admin/plugins.php +++ b/admin/plugins.php @@ -17,9 +17,9 @@ admin_gatekeeper(); // Set admin user for user block - //set_page_owner($_SESSION['guid']);
-
- // Regenerate plugin list
+ //set_page_owner($_SESSION['guid']); + + // Regenerate plugin list regenerate_plugin_list(); // Display main admin menu diff --git a/admin/site.php b/admin/site.php index dc8aed1a1..c66dc290a 100644 --- a/admin/site.php +++ b/admin/site.php @@ -1,26 +1,26 @@ -<?php
-
- /**
- * Elgg administration site system index
- *
- * @package Elgg
- * @subpackage Core
+<?php - * @author Curverider Ltd
+ /** + * Elgg administration site system index + * + * @package Elgg + * @subpackage Core - * @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
- 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")));
-
+ * @author Curverider Ltd + + * @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 + 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"))); + ?>
\ No newline at end of file diff --git a/admin/user.php b/admin/user.php index 84e4f1d83..16b5bf172 100644 --- a/admin/user.php +++ b/admin/user.php @@ -1,45 +1,45 @@ -<?php
-
- /**
- * Elgg administration user system index
- *
- * @package Elgg
- * @subpackage Core
- - * @author Curverider Ltd
- - * @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
- admin_gatekeeper();
-
- // 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');
-
- $result = list_entities('user');
-
- set_context('admin');
-
- // Display main admin menu
- page_draw(elgg_echo("admin:user"),
- elgg_view_layout("two_column_left_sidebar",
- '',
- $title . elgg_view("admin/user") . $result)
- );
-
+<?php + + /** + * Elgg administration user system index + * + * @package Elgg + * @subpackage Core + + * @author Curverider Ltd + + * @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 + admin_gatekeeper(); + + // 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'); + + $result = list_entities('user'); + + set_context('admin'); + + // Display main admin menu + page_draw(elgg_echo("admin:user"), + elgg_view_layout("two_column_left_sidebar", + '', + $title . elgg_view("admin/user") . $result) + ); + ?>
\ No newline at end of file |