diff options
Diffstat (limited to 'mod/custom_index/index.php')
-rw-r--r-- | mod/custom_index/index.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/custom_index/index.php b/mod/custom_index/index.php index 43cab9723..281a2ca1d 100644 --- a/mod/custom_index/index.php +++ b/mod/custom_index/index.php @@ -32,6 +32,10 @@ $thewire = elgg_list_entities($list_params); $list_params['subtype'] = 'file'; $files = elgg_list_entities($list_params); +//grab the latest files +$list_params['subtype'] = 'activity'; +$activities = elgg_list_entities($list_params); + //get the newest members who have an avatar $newest_members = elgg_list_entities_from_metadata(array( 'metadata_names' => 'icontime', @@ -63,6 +67,7 @@ $params = array( 'login' => $login, 'members' => $newest_members, 'thewire' => $thewire, + 'activities' => $activities, ); $body = elgg_view_layout('custom_index', $params); |