aboutsummaryrefslogtreecommitdiff
path: root/mod/logbrowser/index.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-29 16:42:04 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-29 16:42:04 +0000
commitf93ce10e56f335cfe1678ea93ca971f77eb839e1 (patch)
treeff3c81a8643cfa093cf1f902b243282b31e03324 /mod/logbrowser/index.php
parentf4df8ab602cd8d9d2ead55999f312b2da6eea1e0 (diff)
downloadelgg-f93ce10e56f335cfe1678ea93ca971f77eb839e1.tar.gz
elgg-f93ce10e56f335cfe1678ea93ca971f77eb839e1.tar.bz2
Added basic log browser.
updateclient & logbrowser are switched on by default in new installs. git-svn-id: https://code.elgg.org/elgg/trunk@1579 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/logbrowser/index.php')
-rw-r--r--mod/logbrowser/index.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/mod/logbrowser/index.php b/mod/logbrowser/index.php
new file mode 100644
index 000000000..8afecc9bd
--- /dev/null
+++ b/mod/logbrowser/index.php
@@ -0,0 +1,38 @@
+<?php
+ /**
+ * Elgg log browser.
+ *
+ * @package ElggLogBrowser
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+
+ $context = get_context();
+ set_context('search');
+
+ $limit = get_input('limit', 10);
+ $offset = get_input('offset');
+
+ // Get log entries
+ $log = get_system_log("", "","",$limit, $offset);
+ $count = get_system_log("", "","",$limit, $offset, true);
+ $log_entries = array();
+
+ foreach ($log as $l)
+ {
+ $tmp = new ElggObject();
+ $tmp->subtype = 'logwrapper';
+ $tmp->entry = $l;
+ $log_entries[] = $tmp;
+ }
+
+ $result = elgg_view_entity_list($log_entries, $count, $offset, $limit, false);
+
+// Display main admin menu
+ page_draw(elgg_echo("logbrowser"),elgg_view_layout("one_column", $result));
+ set_context($context);
+
+?> \ No newline at end of file