diff options
Diffstat (limited to 'mod/notifications/views/default/forms')
| -rw-r--r-- | mod/notifications/views/default/forms/notificationsettings/groupsave.php | 59 | ||||
| -rw-r--r-- | mod/notifications/views/default/forms/notificationsettings/save.php | 22 |
2 files changed, 53 insertions, 28 deletions
diff --git a/mod/notifications/views/default/forms/notificationsettings/groupsave.php b/mod/notifications/views/default/forms/notificationsettings/groupsave.php index 632e34a54..f3e5f693a 100644 --- a/mod/notifications/views/default/forms/notificationsettings/groupsave.php +++ b/mod/notifications/views/default/forms/notificationsettings/groupsave.php @@ -3,11 +3,21 @@ * 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' => elgg_get_logged_in_user_guid(), 'types' => 'group', 'limit' => 99999)); +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) { @@ -24,22 +34,19 @@ foreach($NOTIFICATION_HANDLERS as $method => $foo) { <?php echo elgg_view('notifications/subscriptions/jsfuncs',$vars); ?> - - <p> + <div> <?php - echo elgg_echo('notifications:subscriptions:groups:description'); - ?> - </p> + </div> <?php if (isset($vars['groups']) && !empty($vars['groups'])) { ?> - <table id="notificationstable" cellspacing="0" cellpadding="4" border="0" width="100%"> - <tr> - <td> </td> + <table id="notificationstable" cellspacing="0" cellpadding="4" width="100%"> + <tr> + <td> </td> <?php $i = 0; @@ -48,13 +55,13 @@ if (isset($vars['groups']) && !empty($vars['groups'])) { echo "<td class='spacercolumn'> </td>"; } ?> - <td class="<?php echo $method; ?>togglefield"><?php echo elgg_echo('notification:method:'.$method); ?></td> + <td class="<?php echo $method; ?>togglefield"><?php echo elgg_echo('notification:method:'.$method); ?></td> <?php $i++; } ?> - <td> </td> - </tr> + <td> </td> + </tr> <?php foreach($vars['groups'] as $group) { @@ -79,24 +86,26 @@ END; } ?> - <tr> - <td class="namefield"> - <p> + <tr> + <td class="namefield"> + <div> <?php echo $group->name; ?> - </p> - </td> -<?php - echo $fields; -?> - <td> </td> - </tr> + </div> + </td> + <?php echo $fields; ?> + <td> </td> + </tr> <?php } ?> - </table> + </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>'; + ?> - <input type="submit" value="<?php echo elgg_echo('save'); ?>" /> </div> </div> diff --git a/mod/notifications/views/default/forms/notificationsettings/save.php b/mod/notifications/views/default/forms/notificationsettings/save.php index ec0c9c701..9470256ca 100644 --- a/mod/notifications/views/default/forms/notificationsettings/save.php +++ b/mod/notifications/views/default/forms/notificationsettings/save.php @@ -1,5 +1,21 @@ <?php +/** + * Personal notifications form body + * + * @uses $vars['user'] ElggUser + */ -echo elgg_view('notifications/subscriptions/personal'); -echo elgg_view('notifications/subscriptions/collections'); -echo elgg_view('notifications/subscriptions/forminternals');
\ No newline at end of file +/* @var ElggUser $user */ +$user = $vars['user']; + +echo elgg_view('notifications/subscriptions/personal', $vars); +echo elgg_view('notifications/subscriptions/collections', $vars); +echo elgg_view('notifications/subscriptions/forminternals', $vars); + +?> +<div class="elgg-foot"> +<?php +echo elgg_view('input/hidden', array('name' => 'guid', 'value' => $user->guid)); +echo elgg_view('input/submit', array('value' => elgg_echo('save'))); +?> +</div> |
