aboutsummaryrefslogtreecommitdiff
path: root/views/default/notifications/settings/usersettings.php
blob: ea11ade8faf64b41feb2f29a3b208dc9c5a52d8c (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
<?php
/**
 * User settings for notifications.
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */

global $NOTIFICATION_HANDLERS;
$notification_settings = get_user_notification_settings(page_owner());

?>
<div class="user_settings notifications">
<h3><?php echo elgg_echo('notifications:usersettings'); ?></h3>

<p><?php echo elgg_echo('notifications:methods'); ?>

<table>
<?php
	// Loop through options
	foreach ($NOTIFICATION_HANDLERS as $k => $v) {
?>
		<tr>
			<td><?php echo elgg_echo($k); ?>: </td>

			<td>
<?php

	if ($notification_settings->$k) {
		$val = "yes";
	} else {
		$val = "no";
	}
	echo elgg_view('input/radio',array('internalname' => "method[{$k}]", 'options' => array(elgg_echo('option:yes') => 'yes',elgg_echo('option:no') => 'no'), 'value' => $val));

?>
			</td>
		</tr>
<?php
	}
?>
</table>
</div>