notifications->getMethodsAsDeprecatedGlobal(); $notification_settings = get_user_notification_settings(elgg_get_page_owner_guid()); $title = elgg_echo('notifications:usersettings'); $rows = ''; // Loop through options foreach ($NOTIFICATION_HANDLERS as $k => $v) { if ($notification_settings->$k) { $val = "yes"; } else { $val = "no"; } $radio = elgg_view('input/radio', array( 'name' => "method[$k]", 'value' => $val, 'options' => array( elgg_echo('option:yes') => 'yes', elgg_echo('option:no') => 'no' ), )); $cells = '' . elgg_echo("notification:method:$k") . ': '; $cells .= "$radio"; $rows .= "$cells"; } $content = ''; $content .= "$rows
"; echo elgg_view_module('info', $title, $content);