diff options
Diffstat (limited to 'views/default/object/list.php')
-rwxr-xr-x | views/default/object/list.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/views/default/object/list.php b/views/default/object/list.php new file mode 100755 index 000000000..9ab6789bd --- /dev/null +++ b/views/default/object/list.php @@ -0,0 +1,14 @@ +<?php + $item = $vars['entity']; + $owner = livestream_get_owner($item); + + $row = " + <div class=\"contentWrapper\"> + <br /> + <a href=\"".$CONFIG->wwwroot."livestream/".$owner->username."/view/".$item->guid."\">".$item->title."</a> + </div> + "; + + echo elgg_echo($row); + +?> |