aboutsummaryrefslogtreecommitdiff
path: root/views/default/page_elements/topbar_logout.php
blob: 38a37bc2298161c018499392c43a6a586c6132b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * A standard logout link
 *
 * Called within the Elgg topbar view.
 */

echo '<div class="log_out">';
echo elgg_view('output/url', array(
	'href' => "action/logout",
	'text' => elgg_echo('logout'),
	'is_action' => TRUE
));
echo '</div>';