$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 = elgg_echo('notifications:methods'); $content .= "$rows
"; echo elgg_view_module('info', $title, $content);