aboutsummaryrefslogtreecommitdiff
path: root/views/default/usersettings
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-15 02:49:24 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-15 02:49:24 +0000
commitb3c486b0ba9a3005e9b4ebf8269df582e84fc72f (patch)
tree387c8e294a8684517e9a6f5d29992e4784e79154 /views/default/usersettings
parentb9ffc51a110107be82cb1151acd9c7cd07f55ab1 (diff)
downloadelgg-b3c486b0ba9a3005e9b4ebf8269df582e84fc72f.tar.gz
elgg-b3c486b0ba9a3005e9b4ebf8269df582e84fc72f.tar.bz2
moved default notification settings into usersettings
git-svn-id: http://code.elgg.org/elgg/trunk@7629 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/usersettings')
-rw-r--r--views/default/usersettings/notifications.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/views/default/usersettings/notifications.php b/views/default/usersettings/notifications.php
new file mode 100644
index 000000000..afb142ebe
--- /dev/null
+++ b/views/default/usersettings/notifications.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * User settings for notifications.
+ *
+ * @package Elgg
+ * @subpackage Core
+ */
+
+global $NOTIFICATION_HANDLERS;
+$notification_settings = get_user_notification_settings(elgg_get_page_owner_guid());
+
+?>
+<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]",
+ 'value' => $val,
+ 'options' => array(
+ elgg_echo('option:yes') => 'yes',
+ elgg_echo('option:no') => 'no'
+ ),
+ ));
+
+?>
+ </td>
+ </tr>
+<?php
+ }
+?>
+</table>
+</div> \ No newline at end of file