]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
removing unused views
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Mon, 6 Dec 2010 12:26:06 +0000 (12:26 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Mon, 6 Dec 2010 12:26:06 +0000 (12:26 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7547 36083f99-b078-4883-b0ff-0f9b5a30f544

views/default/friends/list.php [deleted file]
views/default/messages/exceptions/exception.php [deleted file]

diff --git a/views/default/friends/list.php b/views/default/friends/list.php
deleted file mode 100644 (file)
index 182dc2e..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-/**
- * Elgg friends list
- * Lists a user's friends
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['friends'] The array of ElggUser objects
- */
-
-if (is_array($vars['friends']) && sizeof($vars['friends']) > 0) {
-       foreach($vars['friends'] as $friend) {
-               echo elgg_view_entity($friend);
-       }
-}
\ No newline at end of file
diff --git a/views/default/messages/exceptions/exception.php b/views/default/messages/exceptions/exception.php
deleted file mode 100644 (file)
index ecbd791..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/**
- * Elgg exception
- * Displays a single exception
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['object'] An exception
- */
-
-global $CONFIG;
-
-$class = get_class($vars['object']);
-$message = elgg_view('output/longtext', array('value' => $vars['object']->getMessage()));
-
-$body = <<< END
-<p class="messages-exception">
-       <span title="$class">
-               <b>$message</b>
-       </span>
-</p>
-END;
-
-if (isset($CONFIG->debug)) {
-       $details = elgg_view('output/longtext', array('value' => htmlentities(print_r($vars['object'], true), ENT_QUOTES, 'UTF-8')));
-       $body .= <<< END
-       <hr />
-       <p class="messages-exception-detail">
-               $details
-       </p>
-END;
-}
-
-$title = $class;
-
-$content = elgg_view_title($title) . $body;
-echo elgg_view_layout("one_column", array('content' => $content));
\ No newline at end of file