show selection in settings menu

darcs-hash:20080611160520-84dde-6e5b2d12cd9f0f601ffd57bc68246df738d6145a.gz
This commit is contained in:
Evan Prodromou 2008-06-11 12:05:20 -04:00
parent ca4d43a98f
commit f406ba4501
1 changed files with 10 additions and 3 deletions

View File

@ -50,13 +50,20 @@ class SettingsAction extends Action {
}
function settings_menu() {
$action = $this->trimmed('action');
common_element_start('ul', array('id' => 'nav_views'));
common_menu_item(common_local_url('profilesettings'),
_t('Profile'));
_t('Profile'),
_t('Change your profile settings'),
$action == 'profilesettings');
common_menu_item(common_local_url('avatar'),
_t('Avatar'));
_t('Avatar'),
_t('Upload a new profile image'),
$action == 'avatar');
common_menu_item(common_local_url('password'),
_t('Password'));
_t('Password'),
_t('Change your password'),
$action == 'password');
common_element_end('ul');
}
}