aboutsummaryrefslogtreecommitdiff
path: root/views/default/notifications/settings/usersettings.php
blob: 71c12fdc5fbc0322450c908721dfb3b1e90575c5 (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
45
46
<?php
	/**
	 * User settings for notifications.
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Marcus Povey
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.org/
	 */

	global $NOTIFICATION_HANDLERS;
	$notification_settings = get_user_notification_settings();
?>
<form action="<?php echo $vars['url']; ?>action/notifications/settings/usersettings/save" method="post">
	<h2><?php echo elgg_echo('notifications:usersettings'); ?></h2>
	
	<p><?php echo elgg_echo('notifications:methods'); ?>
	
	<table>
<?php
		// Loop through options
		foreach ($NOTIFICATION_HANDLERS as $k => $v) 
		{	
?>
			<tr>
				<td><?php echo $k; ?>: </td>

				<td>
					<input type="radio" name="method[<?php echo $k; ?>]" value="yes" <?php if ($notification_settings->$k) echo "checked=\"yes\" "; ?>/><?php echo elgg_echo("yes"); ?><br />
					<input type="radio" name="method[<?php echo $k; ?>]" value="no" <?php if (!$notification_settings->$k) echo "checked=\"yes\" "; ?>/><?php echo elgg_echo("no"); ?>
				</td>
			</tr>
<?php
		}
?>
	</table>
	<p>
		<input type="submit" value="<?php

			echo elgg_echo('save');			
		
		?>" />
	</p>
</form>