SMS form settings

This commit is contained in:
sarven 2009-01-17 01:08:55 +00:00
parent 0b947a33bc
commit b2f16c5234
2 changed files with 17 additions and 14 deletions

View File

@ -88,7 +88,7 @@ class SmssettingsAction extends SettingsAction
'action' => 'action' =>
common_local_url('smssettings'))); common_local_url('smssettings')));
$this->elementStart('fieldset'); $this->elementStart('fieldset', array('id' => 'settings_sms_address'));
$this->element('legend', null, _('Address')); $this->element('legend', null, _('Address'));
$this->hidden('token', common_session_token()); $this->hidden('token', common_session_token());
@ -142,21 +142,25 @@ class SmssettingsAction extends SettingsAction
$this->submit('removeincoming', _('Remove')); $this->submit('removeincoming', _('Remove'));
} }
$this->elementStart('p'); $this->element('p', 'form_guide',
$this->element('span', 'input_instructions',
_('Make a new email address for posting to; '. _('Make a new email address for posting to; '.
'cancels the old one.')); 'cancels the old one.'));
$this->elementEnd('p');
$this->submit('newincoming', _('New')); $this->submit('newincoming', _('New'));
} }
$this->elementStart('fieldset', array('id' => 'sms_preferences')); $this->elementStart('fieldset', array('id' => 'settings_sms_preferences'));
$this->element('legend', null, _('Preferences')); $this->element('legend', null, _('Preferences'));
$this->elementStart('ul', 'form_datas');
$this->elementStart('li');
$this->checkbox('smsnotify', $this->checkbox('smsnotify',
_('Send me notices through SMS; '. _('Send me notices through SMS; '.
'I understand I may incur '. 'I understand I may incur '.
'exorbitant charges from my carrier.'), 'exorbitant charges from my carrier.'),
$user->smsnotify); $user->smsnotify);
$this->elementEnd('li');
$this->elementEnd('ul');
$this->submit('save', _('Save')); $this->submit('save', _('Save'));
@ -440,8 +444,9 @@ class SmssettingsAction extends SettingsAction
$cnt = $carrier->find(); $cnt = $carrier->find();
$this->elementStart('p'); $this->elementStart('ul');
$this->element('label', array('for' => 'carrier')); $this->elementStart('li');
$this->element('label', array('for' => 'carrier'), _('Mobile carrier'));
$this->elementStart('select', array('name' => 'carrier', $this->elementStart('select', array('name' => 'carrier',
'id' => 'carrier')); 'id' => 'carrier'));
$this->element('option', array('value' => 0), $this->element('option', array('value' => 0),
@ -451,13 +456,14 @@ class SmssettingsAction extends SettingsAction
$carrier->name); $carrier->name);
} }
$this->elementEnd('select'); $this->elementEnd('select');
$this->elementEnd('p'); $this->element('p', 'form_guide',
$this->element('span', 'input_instructions',
sprintf(_('Mobile carrier for your phone. '. sprintf(_('Mobile carrier for your phone. '.
'If you know a carrier that accepts ' . 'If you know a carrier that accepts ' .
'SMS over email but isn\'t listed here, ' . 'SMS over email but isn\'t listed here, ' .
'send email to let us know at %s.'), 'send email to let us know at %s.'),
common_config('site', 'email'))); common_config('site', 'email')));
$this->elementEnd('li');
$this->elementEnd('ul');
} }
/** /**

View File

@ -99,13 +99,10 @@ form input.submit {
/* FORM SETTINGS */ /* FORM SETTINGS */
.form_settings {
margin-bottom:29px;
}
.form_settings fieldset { .form_settings fieldset {
padding:0; padding:0;
border:0; border:0;
margin-bottom:29px;
} }
.form_settings legend { .form_settings legend {
font-size:1.6em; font-size:1.6em;
@ -136,7 +133,7 @@ margin-bottom:18px;
margin-bottom:29px; margin-bottom:29px;
} }
#settings_email_preferences label { .form_settings label.checkbox {
font-weight:normal; font-weight:normal;
} }