From 7be26eab54af016c2f64b2316141d40955c6c2f6 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 6 Feb 2011 22:46:47 +0000 Subject: removing old entities views that are no longer needed and did the last changes for the icon system git-svn-id: http://code.elgg.org/elgg/trunk@8054 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/entities/list.php | 63 ----------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 views/default/entities/list.php (limited to 'views/default/entities/list.php') diff --git a/views/default/entities/list.php b/views/default/entities/list.php deleted file mode 100644 index 2ddd96ee9..000000000 --- a/views/default/entities/list.php +++ /dev/null @@ -1,63 +0,0 @@ - 0 && $list_type_toggle) { - $nav .= elgg_view('navigation/listtype', array( - 'baseurl' => $base_url, - 'offset' => $offset, - 'count' => $count, - 'listtype' => $list_type, - )); -} - -if ($pagination) { - $nav .= elgg_view('navigation/pagination', array( - 'baseurl' => $base_url, - 'offset' => $offset, - 'count' => $count, - 'limit' => $limit, - )); -} - -if ($list_type == 'list') { - if (is_array($entities) && sizeof($entities) > 0) { - $html .= ''; - } -} else { - if (is_array($entities) && sizeof($entities) > 0) { - $html .= elgg_view('entities/gallery', array('entities' => $entities)); - } -} - -if ($count) { - $html .= $nav; -} - -echo $html; -- cgit v1.2.3