diff options
Diffstat (limited to 'actions/notifications/settings/usersettings/save.php')
-rw-r--r-- | actions/notifications/settings/usersettings/save.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/actions/notifications/settings/usersettings/save.php b/actions/notifications/settings/usersettings/save.php new file mode 100644 index 000000000..79970421a --- /dev/null +++ b/actions/notifications/settings/usersettings/save.php @@ -0,0 +1,37 @@ +<?php + /** + * Elgg notifications user preference save acion. + * + * @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/ + */ + + // Method + $method = get_input('method'); + gatekeeper(); + + $result = false; + foreach ($method as $k => $v) + { + $result = set_user_notification_setting($_SESSION['user']->guid, $k, ($v == 'yes') ? true : false); + + if (!$result) + { + system_message(elgg_echo('notifications:usersettings:save:fail')); + forward($_SERVER['HTTP_REFERER']); + + exit; + } + } + + if ($result) + system_message(elgg_echo('notifications:usersettings:save:ok')); + else + system_message(elgg_echo('notifications:usersettings:save:fail')); + + forward($_SERVER['HTTP_REFERER']); +?>
\ No newline at end of file |