From 898bcdbf5ceb1f65fff5732915a490addcb1d820 Mon Sep 17 00:00:00 2001
From: Eric Rasmussen <erasmussen2@unl.edu>
Date: Tue, 13 Oct 2009 15:29:20 +0000
Subject: [PATCH] test of a browse prospective students list

---
 plugins/browse/prospective.php | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 plugins/browse/prospective.php

diff --git a/plugins/browse/prospective.php b/plugins/browse/prospective.php
new file mode 100644
index 00000000..41ef8839
--- /dev/null
+++ b/plugins/browse/prospective.php
@@ -0,0 +1,23 @@
+<?php
+        // Get the Elgg framework
+                require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+                gatekeeper();
+
+                $context = get_context();
+
+                $title = elgg_view_title(elgg_echo('memberlist'));
+
+                set_context('search');
+
+                $result = list_entities('user');
+
+
+        // Display main admin menu
+                page_draw(elgg_echo("memberlist"),
+                                                elgg_view_layout("two_column_left_sidebar",
+                                                                                '',
+                                                                                $title . elgg_view("everybody/user") . $result)
+                                                                                );
+
+?>
-- 
GitLab