common_element('h2', NULL, _t('Preferences'));
common_checkbox('jabbernotify',
- _t('Send me notices through Jabber/GTalk.'));
+ _t('Send me notices through Jabber/GTalk.'),
+ $user->jabbernotify);
common_checkbox('updatefrompresence',
- _t('Post a notice when my Jabber/GTalk status changes.'));
+ _t('Post a notice when my Jabber/GTalk status changes.'),
+ $user->updatefrompresence);
common_submit('save', _t('Save'));
common_element_end('form');
common_element_end('p');
}
-function common_checkbox($id, $label, $instructions=NULL, $value='true')
+function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value='true')
{
common_element_start('p');
$attrs = array('name' => $id,
'type' => 'checkbox',
- 'id' => $id,
- 'value' => $value);
+ 'id' => $id);
if ($value) {
$attrs['value'] = htmlspecialchars($value);
}
+ if ($checked) {
+ $attrs['checked'] = 'checked';
+ }
common_element('input', $attrs);
# XXX: use a <label>
common_text(' ');