diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-08 12:06:20 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-08 12:06:20 +0000 |
commit | 08cb7d2a6c8256ff7963c90c9ba0d92b46a3e3b3 (patch) | |
tree | 2a5dddf3906d3f2a30f47e57c4962d928586adf2 /entities | |
parent | bb9ae5a085e53948a8138a638e84648ce1ed726d (diff) | |
download | elgg-08cb7d2a6c8256ff7963c90c9ba0d92b46a3e3b3.tar.gz elgg-08cb7d2a6c8256ff7963c90c9ba0d92b46a3e3b3.tar.bz2 |
Rough and ready entity list page
git-svn-id: https://code.elgg.org/elgg/trunk@1335 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'entities')
-rw-r--r-- | entities/list.php | 21 |
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 |