(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Formfields * @version $Id: formfield.ticket_reply.php 117 2010-12-21 07:26:58Z d00p $ */ return array( 'ticket_reply' => array( 'title' => $lng['ticket']['ticket_reply'], 'image' => 'icons/ticket_reply.png', 'sections' => array( 'section_a' => array( 'visible' => ($isclosed == 0 ? true : false), 'title' => $lng['ticket']['ticket_reply'], 'image' => 'icons/ticket_reply.png', 'fields' => array( 'subject' => array( 'label' => $lng['ticket']['subject'], 'type' => 'text', 'value' => 'Re: '.$subject ), 'priority' => array( 'label' => $lng['ticket']['priority'], 'type' => 'select', 'select_var' => $priorities ), 'category' => array( 'label' => $lng['ticket']['category'], 'type' => 'label', 'value' => $row['name'] ), 'message' => array( 'style' => 'vertical-align:top;', 'label' => $lng['ticket']['message'], 'type' => 'textarea', 'cols' => 60, 'rows' => 12 ) ) ) ) ) );