diff options
Diffstat (limited to 'mod/logbrowser/index.php')
| -rw-r--r-- | mod/logbrowser/index.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/mod/logbrowser/index.php b/mod/logbrowser/index.php deleted file mode 100644 index 9ef3d2617..000000000 --- a/mod/logbrowser/index.php +++ /dev/null @@ -1,43 +0,0 @@ -<?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/ - */ - - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - - admin_gatekeeper(); - - $context = get_context(); - set_context('search'); - - $limit = get_input('limit', 10); - $offset = get_input('offset'); - - $title = elgg_echo("logbrowser"); - - // 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($title,elgg_view_layout("two_column_left_sidebar", '', elgg_view_title($title).$result)); - set_context($context); - -?>
\ No newline at end of file |
