aboutsummaryrefslogtreecommitdiff
path: root/entities
diff options
context:
space:
mode:
Diffstat (limited to 'entities')
-rw-r--r--entities/list.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/entities/list.php b/entities/list.php
new file mode 100644
index 000000000..52a5eafef
--- /dev/null
+++ b/entities/list.php
@@ -0,0 +1,21 @@
+<?php
+
+ /**
+ * Activity viewer
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
+ set_context('search');
+ $body = list_entities("","",0,10,false);
+ set_context('entities');
+ $body = elgg_view_layout('one_column',$body);
+ echo page_draw("",$body);
+
+?> \ No newline at end of file