From ee47fbf70fc7f67efde6926237e13fc20a664a72 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 19 Mar 2011 14:58:46 +0000 Subject: Refs #3158 namespace file plugin's page scripts git-svn-id: http://code.elgg.org/elgg/trunk@8766 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/file/search.php | 98 ----------------------------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 mod/file/search.php (limited to 'mod/file/search.php') diff --git a/mod/file/search.php b/mod/file/search.php deleted file mode 100644 index bcaa2cad9..000000000 --- a/mod/file/search.php +++ /dev/null @@ -1,98 +0,0 @@ -name, "file/owner/$owner->username"); - } else { - elgg_push_breadcrumb($owner->name, "file/group/$owner->guid/owner"); - } -} -if ($friends && $owner) { - elgg_push_breadcrumb(elgg_echo('friends'), "file/friends/$owner->username"); -} -if ($tag) { - elgg_push_breadcrumb(elgg_echo("file:type:$tag")); -} else { - elgg_push_breadcrumb(elgg_echo('all')); -} - -// title -if (!$owner) { - // world files - $title = elgg_echo('all') . ' ' . elgg_echo("file:type:$tag"); -} else { - $friend_string = $friends ? elgg_echo('file:title:friends') : ''; - $type_string = elgg_echo("file:type:$tag"); - $title = elgg_echo('file:list:title', array($owner->name, $friend_string, $type_string)); -} - - -$sidebar = file_get_type_cloud($page_owner_guid, $friends); - -if ($friends) { - // elgg_does not support getting objects that belong to an entity's friends - $friend_entities = get_user_friends($page_owner_guid, "", 999999, 0); - if ($friend_entities) { - $friend_guids = array(); - foreach ($friend_entities as $friend) { - $friend_guids[] = $friend->getGUID(); - } - } - $page_owner_guid = $friend_guids; -} - -$limit = 10; -if ($listtype == "gallery") { - $limit = 12; -} - -$params = array( - 'types' => 'object', - 'subtypes' => 'file', - 'container_guid' => $page_owner_guid, - 'limit' => $limit, - 'full_view' => false, -); - -if ($tag) { - $params['metadata_name'] = $md_type; - $params['metadata_value'] = $tag; - $content = elgg_list_entities_from_metadata($params); -} else { - $content = elgg_list_entities($params); -} - -$body = elgg_view_layout('content', array( - 'filter' => '', - 'buttons' => '', - 'content' => $content, - 'title' => $title, - 'sidebar' => $sidebar, -)); - -echo elgg_view_page($title, $body); \ No newline at end of file -- cgit v1.2.3