diff options
Diffstat (limited to 'views/default/notifications/settings/usersettings.php')
| -rw-r--r-- | views/default/notifications/settings/usersettings.php | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/views/default/notifications/settings/usersettings.php b/views/default/notifications/settings/usersettings.php deleted file mode 100644 index f1609d150..000000000 --- a/views/default/notifications/settings/usersettings.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php - /** - * User settings for notifications. - * - * @package Elgg - * @subpackage Core - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Marcus Povey - * @copyright Curverider Ltd 2008 - * @link http://elgg.org/ - */ - - global $NOTIFICATION_HANDLERS; - $notification_settings = get_user_notification_settings(page_owner()); -?> - <h2><?php echo elgg_echo('notifications:usersettings'); ?></h2> - - <p><?php echo elgg_echo('notifications:methods'); ?> - - <table> -<?php - // Loop through options - foreach ($NOTIFICATION_HANDLERS as $k => $v) - { -?> - <tr> - <td><?php echo $k; ?>: </td> - - <td>
-<?php
-
- if ($notification_settings->k) {
- $val = "yes";
- } else {
- $val = "no";
- }
- echo elgg_view('input/radio',array('internalname' => "method[{$k}]", 'options' => array('yes','no'), 'value' => $val));
-
-?> - </td> - </tr> -<?php - } -?> - </table>
\ No newline at end of file |
