diff options
Diffstat (limited to 'mod/custom_index')
-rw-r--r-- | mod/custom_index/index.php | 7 | ||||
-rw-r--r-- | mod/custom_index/views/default/page/layouts/custom_index.php | 9 |
2 files changed, 13 insertions, 3 deletions
diff --git a/mod/custom_index/index.php b/mod/custom_index/index.php index 53990a006..43cab9723 100644 --- a/mod/custom_index/index.php +++ b/mod/custom_index/index.php @@ -24,6 +24,10 @@ $blogs = elgg_list_entities($list_params); $list_params['subtype'] = 'bookmarks'; $bookmarks = elgg_list_entities($list_params); +//grab the latest thewire +$list_params['subtype'] = 'thewire'; +$thewire = elgg_list_entities($list_params); + //grab the latest files $list_params['subtype'] = 'file'; $files = elgg_list_entities($list_params); @@ -31,7 +35,7 @@ $files = elgg_list_entities($list_params); //get the newest members who have an avatar $newest_members = elgg_list_entities_from_metadata(array( 'metadata_names' => 'icontime', - 'types' => 'user', + 'type' => 'user', 'limit' => 10, 'full_view' => false, 'pagination' => false, @@ -58,6 +62,7 @@ $params = array( 'groups' => $groups, 'login' => $login, 'members' => $newest_members, + 'thewire' => $thewire, ); $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 1267e19b2..4f79754b9 100644 --- a/mod/custom_index/views/default/page/layouts/custom_index.php +++ b/mod/custom_index/views/default/page/layouts/custom_index.php @@ -30,6 +30,11 @@ echo elgg_view_module('featured', '', $top_box, $mod_params); // a view for plugins to extend echo elgg_view("index/lefthandside"); +// the wire +if (elgg_is_active_plugin('thewire')) { + echo elgg_view_module('thewire', elgg_echo("thewire"), $vars['thewire'], $mod_params); +} + // files if (elgg_is_active_plugin('file')) { echo elgg_view_module('featured', elgg_echo("custom:files"), $vars['files'], $mod_params); @@ -50,8 +55,8 @@ if (elgg_is_active_plugin('groups')) { // a view for plugins to extend echo elgg_view("index/righthandside"); -// files -echo elgg_view_module('featured', elgg_echo("custom:members"), $vars['members'], $mod_params); +// members +//echo elgg_view_module('featured', elgg_echo("custom:members"), $vars['members'], $mod_params); // groups if (elgg_is_active_plugin('blog')) { |