aboutsummaryrefslogtreecommitdiff
path: root/views/default/object/admin_notice.php
blob: 11524567ed9d1435159054911df0d34032676df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * A persistent admin notice to be displayed on all admin pages until cleared.
 */

if (isset($vars['entity']) && elgg_instanceof($vars['entity'], 'object', 'admin_notice')) {
	$notice = $vars['entity'];
	$message = $notice->description;

	$delete = elgg_view('output/url', array(
		'href' => "action/admin/delete_admin_notice?guid=$notice->guid",
		'text' => '<span class="elgg-icon elgg-icon-delete"></span>',
		'is_action' => true,
		'class' => 'elgg-admin-notice',
		'is_trusted' => true,
	));

	echo "<p>$delete$message</p>";
}