$friend) $owner_guid[$key] = (int) $friend->getGUID(); } else { $owner_guid = array(); } } else { $owner_guid = get_input('owner_guid',0); if (substr_count($owner_guid,',')) { $owner_guid = explode(",",$owner_guid); } } $page_owner = get_input('page_owner',0); if ($page_owner) { set_page_owner($page_owner); } else { if ($friends) { set_page_owner($friends); } else { if ($owner_guid > 0 && !is_array($owner_guid)) set_page_owner($owner_guid); } } if (is_callable('group_gatekeeper')) group_gatekeeper(); if (empty($tag)) { $title = elgg_echo('file:type:all'); $area2 = elgg_view_title(elgg_echo('file:type:all')); } else { $title = sprintf(elgg_echo('searchtitle'),$tag); if (is_array($owner_guid)) { $area2 = elgg_view_title(elgg_echo("file:friends:type:" . $tag)); } else if (page_owner() && page_owner() != $_SESSION['guid']) { $area2 = elgg_view_title(sprintf(elgg_echo("file:user:type:" . $tag),page_owner_entity()->name)); } else{ $area2 = elgg_view_title(elgg_echo("file:type:" . $tag)); } } if ($friends) { $area1 = get_filetype_cloud($friends,true); } else if ($owner_guid) { $area1 = get_filetype_cloud($owner_guid); } else { $area1 = get_filetype_cloud(); } // Set context set_context('search'); $limit = 10; if ($search_viewtype == "gallery") $limit = 12; if (!empty($tag)) { $area2 .= list_entities_from_metadata($md_type, $tag, 'object', 'file', $owner_guid, $limit); } else { $area2 .= elgg_list_entities(array('types' => 'object', 'subtypes' => 'file', 'owner_guid' => $owner_guid, 'limit' => $limit)); } set_context("file"); $body = elgg_view_layout('two_column_left_sidebar',$area1, $area2); page_draw($title, $body); ?>