(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Formfields * */ return array( 'ticket_new' => array( 'title' => $lng['ticket']['ticket_new'], 'image' => 'icons/ticket_new.png', 'sections' => array( 'section_a' => array( 'title' => $lng['ticket']['ticket_new'], 'image' => 'icons/ticket_new.png', 'fields' => array( 'customer' => array( 'label' => $lng['ticket']['customer'], 'type' => 'select', 'select_var' => $customers ), 'subject' => array( 'label' => $lng['ticket']['subject'], 'type' => 'text', 'maxlength' => 70 ), 'priority' => array( 'label' => $lng['ticket']['priority'], 'type' => 'select', 'select_var' => $priorities ), 'category' => array( 'label' => $lng['ticket']['category'], 'type' => 'select', 'select_var' => $categories ), 'message' => array( 'style' => 'align-top', 'label' => $lng['ticket']['message'], 'type' => 'textarea', 'cols' => 60, 'rows' => 12 ) ) ) ) ) );