From c64f137497cb2963445b34e17ed45a3044135bab Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 30 Jun 2008 13:03:42 -0400 Subject: refactor common behaviour in settings pages darcs-hash:20080630170342-84dde-5d7feb88a0a707b24c8070802a7ec99dd1f35687.gz --- actions/password.php | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'actions/password.php') diff --git a/actions/password.php b/actions/password.php index 3481ad33b..628bfb5c0 100644 --- a/actions/password.php +++ b/actions/password.php @@ -23,21 +23,12 @@ require_once(INSTALLDIR.'/lib/settingsaction.php'); class PasswordAction extends SettingsAction { - function show_top($arr) { - $msg = $arr[0]; - $success = $arr[1]; - if ($msg) { - $this->message($msg, $success); - } else { - common_element('div', 'instructions', - _t('You can change your password here. Choose a good one!')); - } - $this->settings_menu(); + function get_instructions() { + return _t('You can change your password here. Choose a good one!'); } - + function show_form($msg=NULL, $success=false) { - common_show_header(_t('Change password'), NULL, - array($msg, $success), array($this, 'show_top')); + $this->form_header(_t('Change password'), $msg, $success); common_element_start('form', array('method' => 'POST', 'id' => 'password', 'action' => @@ -90,4 +81,4 @@ class PasswordAction extends SettingsAction { $this->show_form(_t('Password saved'), true); } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf