extract textarea code and make bio a textarea
darcs-hash:20080520211945-84dde-06c9f0884b3dba3e01fe7e0d71662da162c34418.gz
This commit is contained in:
parent
41a149b74a
commit
48eaede398
|
@ -42,8 +42,8 @@ class ProfilesettingsAction extends SettingsAction {
|
||||||
($this->arg('email')) ? $this->arg('email') : $user->email);
|
($this->arg('email')) ? $this->arg('email') : $user->email);
|
||||||
common_input('homepage', _t('Homepage'),
|
common_input('homepage', _t('Homepage'),
|
||||||
($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage);
|
($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage);
|
||||||
common_input('bio', _t('Bio'),
|
common_textarea('bio', _t('Bio'),
|
||||||
($this->arg('bio')) ? $this->arg('bio') : $profile->bio);
|
($this->arg('bio')) ? $this->arg('bio') : $profile->bio);
|
||||||
common_input('location', _t('Location'),
|
common_input('location', _t('Location'),
|
||||||
($this->arg('location')) ? $this->arg('location') : $profile->location);
|
($this->arg('location')) ? $this->arg('location') : $profile->location);
|
||||||
common_submit('submit', _t('Save'));
|
common_submit('submit', _t('Save'));
|
||||||
|
|
20
lib/util.php
20
lib/util.php
|
@ -232,6 +232,17 @@ function common_submit($id, $label) {
|
||||||
common_element_end('p');
|
common_element_end('p');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function common_textarea($id, $label, $content=NULL) {
|
||||||
|
common_element_start('p');
|
||||||
|
common_element('label', array('for' => $id), $label);
|
||||||
|
common_element('textarea', array('rows' => 3, 'cols' => 40,
|
||||||
|
'name' => $id,
|
||||||
|
'id' => $id,
|
||||||
|
'class' => 'width50'),
|
||||||
|
($content) ? $content : ' ');
|
||||||
|
common_element_end('p');
|
||||||
|
}
|
||||||
|
|
||||||
# salted, hashed passwords are stored in the DB
|
# salted, hashed passwords are stored in the DB
|
||||||
|
|
||||||
function common_munge_password($id, $password) {
|
function common_munge_password($id, $password) {
|
||||||
|
@ -381,14 +392,7 @@ function common_profile_url($nickname) {
|
||||||
function common_notice_form() {
|
function common_notice_form() {
|
||||||
common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
|
common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
|
||||||
'action' => common_local_url('newnotice')));
|
'action' => common_local_url('newnotice')));
|
||||||
common_element_start('p');
|
common_textarea('content', _t('What\'s up?'));
|
||||||
common_element('label', array('for' => 'content'), _t('What\'s up?'));
|
|
||||||
common_element('textarea', array('rows' => 3, 'cols' => 40,
|
|
||||||
'name' => 'content',
|
|
||||||
'id' => 'content',
|
|
||||||
'class' => 'width50'),
|
|
||||||
' ');
|
|
||||||
common_element_end('p');
|
|
||||||
common_submit('submit', _t('Send'));
|
common_submit('submit', _t('Send'));
|
||||||
common_element_end('form');
|
common_element_end('form');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user