aboutsummaryrefslogtreecommitdiff
path: root/views/default/messages/exceptions/exception.php
blob: f3668e3e6893c26ec7d6f2d1fe74c3f2d8536296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php

	/**
	 * Elgg exception
	 * Displays a single exception
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.org/
	 * 
	 * @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 ($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;
	
	echo elgg_view_layout("one_column", elgg_view_title($title) . $body);
?>