aboutsummaryrefslogtreecommitdiff
path: root/views/default/usersettings/notifications.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-17 20:36:36 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-17 20:36:36 +0000
commitdb787a3ab93da0c2141d33f3058f9dc2f34d6f2a (patch)
treedca419a399cb00f45c227aed7a62993b089e0f27 /views/default/usersettings/notifications.php
parentc2add32bbf281d488deb26343cf059e3347fe525 (diff)
downloadelgg-db787a3ab93da0c2141d33f3058f9dc2f34d6f2a.tar.gz
elgg-db787a3ab93da0c2141d33f3058f9dc2f34d6f2a.tar.bz2
reorganized the settings views and updated the pages to use new layout
git-svn-id: http://code.elgg.org/elgg/trunk@7663 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/usersettings/notifications.php')
-rw-r--r--views/default/usersettings/notifications.php51
1 files changed, 0 insertions, 51 deletions
diff --git a/views/default/usersettings/notifications.php b/views/default/usersettings/notifications.php
deleted file mode 100644
index afb142ebe..000000000
--- a/views/default/usersettings/notifications.php
+++ /dev/null
@@ -1,51 +0,0 @@
-<?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