aboutsummaryrefslogtreecommitdiff
path: root/mod/custom_index
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-09-29 15:46:54 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-09-29 15:46:54 -0300
commit731e0f0feff53520cf68f8dbcbd0531303716221 (patch)
treea11021818a1f2e6967f75ba69ec261c2cb169b62 /mod/custom_index
parentd3b655c485b370c9f2f94c7ba18e807b337ed5d4 (diff)
downloadelgg-731e0f0feff53520cf68f8dbcbd0531303716221.tar.gz
elgg-731e0f0feff53520cf68f8dbcbd0531303716221.tar.bz2
Adding latest activities into custom index
Diffstat (limited to 'mod/custom_index')
-rw-r--r--mod/custom_index/index.php5
-rw-r--r--mod/custom_index/views/default/page/layouts/custom_index.php7
2 files changed, 11 insertions, 1 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);
diff --git a/mod/custom_index/views/default/page/layouts/custom_index.php b/mod/custom_index/views/default/page/layouts/custom_index.php
index 4f79754b9..2a05348b3 100644
--- a/mod/custom_index/views/default/page/layouts/custom_index.php
+++ b/mod/custom_index/views/default/page/layouts/custom_index.php
@@ -58,7 +58,12 @@ echo elgg_view("index/righthandside");
// members
//echo elgg_view_module('featured', elgg_echo("custom:members"), $vars['members'], $mod_params);
-// groups
+// activities
+if (elgg_is_active_plugin('activity')) {
+ echo elgg_view_module('featured', elgg_echo("custom:activities"), $vars['activities'], $mod_params);
+}
+
+// blogs
if (elgg_is_active_plugin('blog')) {
echo elgg_view_module('featured', elgg_echo("custom:blogs"), $vars['blogs'], $mod_params);
}