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/logbrowser/index.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/logbrowser/index.php')
-rw-r--r-- | mod/logbrowser/index.php | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/mod/logbrowser/index.php b/mod/logbrowser/index.php deleted file mode 100644 index c72e9fc23..000000000 --- a/mod/logbrowser/index.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php - /** - * Elgg log browser. - * - * @package ElggLogBrowser - - * @author Curverider Ltd - - * @link http://elgg.com/ - */ - - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - - admin_gatekeeper(); - set_context('admin'); - - $limit = get_input('limit', 40); - $offset = get_input('offset'); - - $search_username = get_input('search_username'); - if ($search_username) { - if ($user = get_user_by_username($search_username)) { - $user = $user->guid; - } - } else { - $user_guid = get_input('user_guid',0); - if ($user_guid) { - $user = (int) $user_guid; - } else { - $user = ""; - } - } - - $timelower = get_input('timelower'); - if ($timelower) $timelower = strtotime($timelower); - $timeupper = get_input('timeupper'); - if ($timeupper) $timeupper = strtotime($timeupper); - - $title = elgg_view_title(elgg_echo('logbrowser')); - - // Get log entries - $log = get_system_log($user, "", "", "","", $limit, $offset, false, $timeupper, $timelower); - $count = get_system_log($user, "", "", "","", $limit, $offset, true, $timeupper, $timelower); - $log_entries = array(); - - foreach ($log as $l) - { - $tmp = new ElggObject(); - $tmp->subtype = 'logwrapper'; - $tmp->entry = $l; - $log_entries[] = $tmp; - } - - $form = elgg_view('logbrowser/form',array('user_guid' => $user, 'timeupper' => $timeupper, 'timelower' => $timelower)); - - set_context('search'); - $result = elgg_view_entity_list($log_entries, $count, $offset, $limit, false, false); - $result = "<div class='admin_settings log_browser radius8 clearfloat'>".$result."</div>"; - set_context('admin'); - -// Display main admin menu - page_draw(elgg_echo('logbrowser'),elgg_view_layout('administration', $title . $form . $result)); - -?> |