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/imsettings.php | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) (limited to 'actions/imsettings.php') diff --git a/actions/imsettings.php b/actions/imsettings.php index 11dd9ee3b..eb33d4e06 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -24,25 +24,15 @@ require_once(INSTALLDIR.'/lib/jabber.php'); class ImsettingsAction 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 send and receive notices through '. - 'Jabber/GTalk instant messages. Configure '. - 'your address and settings below.')); - } - $this->settings_menu(); + function get_instructions() { + _t('You can send and receive notices through '. + 'Jabber/GTalk [instant messages](%%doc.im%%). Configure '. + 'your address and settings below.'); } function show_form($msg=NULL, $success=false) { $user = common_current_user(); - common_show_header(_t('IM settings'), NULL, array($msg, $success), - array($this, 'show_top')); - + $this->form_header(_t('IM Settings'), $msg, $success); common_element_start('form', array('method' => 'POST', 'id' => 'imsettings', 'action' => -- cgit v1.2.3-54-g00ecf