diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:58:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:58:59 -0300 |
commit | 31354451ce2c236c9c963064652c39fe54be4afd (patch) | |
tree | 6203d2ba3f7e29518291e2e3999d9fa89892b417 /views/default/favorites/view.php | |
download | elgg-31354451ce2c236c9c963064652c39fe54be4afd.tar.gz elgg-31354451ce2c236c9c963064652c39fe54be4afd.tar.bz2 |
Squashed 'mod/elgg-favorites/' content from commit d96e69b
git-subtree-dir: mod/elgg-favorites
git-subtree-split: d96e69bd1365c3e3c4d998e72d9941ea1ea2278b
Diffstat (limited to 'views/default/favorites/view.php')
-rw-r--r-- | views/default/favorites/view.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/views/default/favorites/view.php b/views/default/favorites/view.php new file mode 100644 index 000000000..53e322f39 --- /dev/null +++ b/views/default/favorites/view.php @@ -0,0 +1,15 @@ +<?php + +if (!elgg_is_logged_in()) { + return; +} + +$fav_options = array( + 'type' => 'object', + 'relationship_guid' => elgg_get_logged_in_user_guid(), + 'relationship' => 'flags_content', + 'full_view' => FALSE, + 'view_type_toggle' => FALSE, +); + +echo elgg_list_entities_from_relationship($fav_options); |