diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 20:26:12 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 20:26:12 +0000 |
commit | c66831fa5138a277a9729174caf14c7eb323fb07 (patch) | |
tree | 2444b54badf4914b59c88700cc1ce30a57ae7ff1 /views/default/notifications | |
parent | 8048313e87b9fd5ab6734e29a0e951524fa33e45 (diff) | |
download | elgg-c66831fa5138a277a9729174caf14c7eb323fb07.tar.gz elgg-c66831fa5138a277a9729174caf14c7eb323fb07.tar.bz2 |
Standardizing views.`
git-svn-id: http://code.elgg.org/elgg/trunk@3555 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/notifications')
-rw-r--r-- | views/default/notifications/settings/usersettings.php | 53 |
1 files changed, 25 insertions, 28 deletions
diff --git a/views/default/notifications/settings/usersettings.php b/views/default/notifications/settings/usersettings.php index ff894cd0e..cba5cdef0 100644 --- a/views/default/notifications/settings/usersettings.php +++ b/views/default/notifications/settings/usersettings.php @@ -1,33 +1,30 @@ <?php - /** - * User settings for notifications. - * - * @package Elgg - * @subpackage Core +/** + * User settings for notifications. + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - * @author Curverider Ltd +global $NOTIFICATION_HANDLERS; +$notification_settings = get_user_notification_settings(page_owner()); - * @link http://elgg.org/ - */ - - global $NOTIFICATION_HANDLERS; - $notification_settings = get_user_notification_settings(page_owner()); - ?> - <h3><?php echo elgg_echo('notifications:usersettings'); ?></h3> - - <p><?php echo elgg_echo('notifications:methods'); ?> - - <table> +<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) - { + // Loop through options + foreach ($NOTIFICATION_HANDLERS as $k => $v) { ?> - <tr> - <td><?php echo elgg_echo($k); ?>: </td> + <tr> + <td><?php echo elgg_echo($k); ?>: </td> - <td> + <td> <?php if ($notification_settings->$k) { @@ -37,10 +34,10 @@ } 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> +?> + </td> + </tr> <?php - } + } ?> - </table>
\ No newline at end of file +</table>
\ No newline at end of file |