blob: f3e5f693a71bcf579fc66b769c54b5f0bd4094ef (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?php
/**
* Elgg notifications groups subscription form
*
* @package ElggNotifications
*
* @uses $vars['user'] ElggUser
*/
/* @var ElggUser $user */
$user = $vars['user'];
global $NOTIFICATION_HANDLERS;
foreach ($NOTIFICATION_HANDLERS as $method => $foo) {
$subsbig[$method] = elgg_get_entities_from_relationship(array(
'relationship' => 'notify' . $method,
'relationship_guid' => $user->guid,
'type' => 'group',
'limit' => false,
));
$tmparray = array();
if ($subsbig[$method]) {
foreach($subsbig[$method] as $tmpent) {
$tmparray[] = $tmpent->guid;
}
}
$subsbig[$method] = $tmparray;
}
?>
<div class="elgg-module elgg-module-info">
<div class="elgg-body">
<?php
echo elgg_view('notifications/subscriptions/jsfuncs',$vars);
?>
<div>
<?php
echo elgg_echo('notifications:subscriptions:groups:description');
?>
</div>
<?php
if (isset($vars['groups']) && !empty($vars['groups'])) {
?>
<table id="notificationstable" cellspacing="0" cellpadding="4" width="100%">
<tr>
<td> </td>
<?php
$i = 0;
foreach($NOTIFICATION_HANDLERS as $method => $foo) {
if ($i > 0) {
echo "<td class='spacercolumn'> </td>";
}
?>
<td class="<?php echo $method; ?>togglefield"><?php echo elgg_echo('notification:method:'.$method); ?></td>
<?php
$i++;
}
?>
<td> </td>
</tr>
<?php
foreach($vars['groups'] as $group) {
$fields = '';
$i = 0;
foreach($NOTIFICATION_HANDLERS as $method => $foo) {
if (in_array($group->guid,$subsbig[$method])) {
$checked[$method] = 'checked="checked"';
} else {
$checked[$method] = '';
}
if ($i > 0) {
$fields .= "<td class=\"spacercolumn\"> </td>";
}
$fields .= <<< END
<td class="{$method}togglefield">
<a border="0" id="{$method}{$group->guid}" class="{$method}toggleOff" onclick="adjust{$method}_alt('{$method}{$group->guid}');">
<input type="checkbox" name="{$method}subscriptions[]" id="{$method}checkbox" onclick="adjust{$method}('{$method}{$group->guid}');" value="{$group->guid}" {$checked[$method]} /></a></td>
END;
$i++;
}
?>
<tr>
<td class="namefield">
<div>
<?php echo $group->name; ?>
</div>
</td>
<?php echo $fields; ?>
<td> </td>
</tr>
<?php
}
?>
</table>
<?php
}
echo '<div class="elgg-foot mtm">';
echo elgg_view('input/hidden', array('name' => 'guid', 'value' => $user->guid));
echo elgg_view('input/submit', array('value' => elgg_echo('save')));
echo '</div>';
?>
</div>
</div>
|