aboutsummaryrefslogtreecommitdiff
path: root/mod/messages/views/default/messages/forms/view.php
blob: adcd3a589b7113d7d4be6f273f8e3a9420506224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

	$body = elgg_view("messages/view",$vars);
	
	$body .= '<div class="messages_buttonbank">';
	$body .= '<input type="hidden" name="type" value="'.$vars['page_view'].'" />';
	$body .= '<input type="hidden" name="offset" value="'.$vars['offset'].'" />';
	$body .= '<input type="submit" name="submit" value="'.elgg_echo('delete').'" /> ';
	$body .= '<input type="submit" name="submit" value="'.elgg_echo('messages:markread').'" /> ';
	$body .= '<input type="button" onclick="javascript:$(\'input[type=checkbox]\').click();" value="'.elgg_echo('messages:toggle').'" />';
	$body .= '</div>';
	
	echo elgg_view('input/form',array('body' => $body, 'action' => $vars['url'] . 'action/messages/delete', 'method' => 'post'));

?>