dbxapp 4.1.3
CMS, Shop, Workflows und modulare Geschäftsanwendungen
Loading...
Searching...
No Matches
ticket-reply_en.fd.php
Go to the documentation of this file.
1<?php
2$messages = array();
3$messages['save_success'] = 'Data was saved';
4$messages['save_succeass'] = $messages['save_success'];
5$messages['save_error'] = 'Data could not be saved';
6$messages['bar_title'] = 'Reply or internal note';
7$messages['bar_subtitle'] = 'The complete history remains attached to the ticket';
8$messages['form_info'] = 'Public replies can be sent by email. Internal notes remain visible only in administration.';
9$messages['validation_error'] = 'Please check the highlighted entries.';
10$messages['mail_warning'] = 'The message and status were saved, but the email could not be sent.';
11$messages['internal_success'] = 'The internal note and status were saved.';
12$messages['reply_success'] = 'The reply and status were saved.';
13$messages['mail_success_suffix'] = ' The email was sent.';
14$messages['message_error'] = 'The message could not be saved.';
15
16
17$field=array();
18$field['name']='status';
19$field['type']='varchar';
20$field['length']='24';
21$field['default']='answered';
22$field['label']='New status';
23$field['rules']='parameter|max=24';
24$field['options']='open=Open&in_progress=In progress&waiting_customer=Waiting for customer&answered=Answered&closed=Closed';
25$field['tpl']='select-single-label';
27
28$field=array();
29$field['name']='priority';
30$field['type']='varchar';
31$field['length']='16';
32$field['default']='normal';
33$field['label']='Priority';
34$field['rules']='parameter|max=16';
35$field['options']='low=Low&normal=Normal&high=High&urgent=Urgent';
36$field['tpl']='select-single-label';
38
39$field=array();
40$field['name']='visibility';
41$field['type']='varchar';
42$field['length']='16';
43$field['default']='public';
44$field['label']='Message type';
45$field['rules']='parameter|max=16';
46$field['options']='public=Reply to requester&internal=Internal note';
47$field['tpl']='select-single-label';
49
50$field=array();
51$field['name']='body';
52$field['type']='mediumtext';
53$field['length']='-1';
54$field['default']='';
55$field['label']='Answer or note';
56$field['rules']='*|min=2|max=10000';
57$field['errormsg']='Please enter a message.';
58$field['placeholder']='Response to the requestor or internal note';
59$field['data']='rows=9';
60$field['tpl']='textarea-label';
62
63$field=array();
64$field['name']='send_mail';
65$field['type']='int';
66$field['length']='1';
67$field['default']='1';
68$field['label']='Send a reply as an email';
69$field['rules']='int';
70$field['options']='1=Yes';
71$field['tpl']='checkbox-label';
$messages
Definition config.fd.php:2