From 79b5f1cea5ffadf18d3680ddeb1f8bd4d974b059 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 12 Aug 2010 22:11:26 -0700 Subject: add title element to notice form --- plugins/NoticeTitle/NoticeTitlePlugin.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'plugins') diff --git a/plugins/NoticeTitle/NoticeTitlePlugin.php b/plugins/NoticeTitle/NoticeTitlePlugin.php index 9dfb4b21c..524faef3a 100644 --- a/plugins/NoticeTitle/NoticeTitlePlugin.php +++ b/plugins/NoticeTitle/NoticeTitlePlugin.php @@ -107,5 +107,18 @@ class NoticeTitlePlugin extends Plugin _m('Adds optional titles to notices')); return true; } + + function onStartShowNoticeFormData($form) + { + $form->out->element('input', array('type' => 'text', + 'id' => 'notice_title', + 'name' => 'notice_title', + 'size' => 40, + 'value' => _m('Title'), + 'style' => 'color: 333333', + 'onFocus' => 'this.value = ""; this.style = \'color: black\';')); + return true; + } + } -- cgit v1.2.3-54-g00ecf