aboutsummaryrefslogtreecommitdiff
path: root/mod/cool_theme/views/default/core/settings/account/notifications.php
blob: c212b388640b6cbefa99392e26c668f182e221db (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
<?php
/**
 * User settings for notifications.
 *
 * @package Elgg
 * @subpackage Core
 */

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

$title = elgg_echo('notifications:usersettings');

$rows = '';

// Loop through options
foreach ($NOTIFICATION_HANDLERS as $k => $v) {

	if ($notification_settings->$k) {
		$val = "yes";
	} else {
		$val = "no";
	}

	$radio = elgg_view('input/radio', array(
		'name' => "method[$k]",
		'value' => $val,
		'options' => array(
			elgg_echo('option:yes') => 'yes',
			elgg_echo('option:no') => 'no'
		),
	));

	$cells = '<td class="prm pbl">' . elgg_echo("notification:method:$k") . ': </td>';
	$cells .= "<td>$radio</td>";

	$rows .= "<tr>$cells</tr>";
}


$content = elgg_echo('notifications:methods');
$content .= "<table>$rows</table>";

echo elgg_view_module('info', $title, $content);