add title element to notice form

This commit is contained in:
Evan Prodromou 2010-08-12 22:11:26 -07:00
parent ac6486f12e
commit 79b5f1cea5
1 changed files with 13 additions and 0 deletions

View File

@ -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;
}
}