getGUID()); } // Get the users friends; this is used in the drop down to select who to send the message to $user = get_loggedin_user(); $friends = $user->getFriends('', 9999); // Set the page title $area2 = elgg_view_title(elgg_echo("messages:sendmessage")); // Get the send form $area2 .= elgg_view("messages/forms/send",array('friends' => $friends)); // Sidebar menu options $area3 = elgg_view("messages/menu_options"); // Format $params = array( 'content' => $area2, 'sidebar' => $area3 ); $body = elgg_view_layout("one_column_with_sidebar", $params); // Draw page echo elgg_view_page(elgg_echo('messages:send', array($page_owner->name)), $body);