11<?php
22
33//* Name of the list
4- $ liste [" name " ] = " support_message " ;
4+ $ liste [' name ' ] = ' support_message ' ;
55
66//* Database table
7- $ liste [" table " ] = " support_message " ;
7+ $ liste [' table ' ] = ' support_message ' ;
88
99//* Index index field of the database table
10- $ liste [" table_idx " ] = " support_message_id " ;
10+ $ liste [' table_idx ' ] = ' support_message_id ' ;
1111
1212//* Search Field Prefix
13- $ liste [" search_prefix " ] = " search_ " ;
13+ $ liste [' search_prefix ' ] = ' search_ ' ;
1414
1515//* Records per page
16- $ liste [" records_per_page " ] = 15 ;
16+ $ liste [' records_per_page ' ] = 15 ;
1717
1818//* Script File of the list
19- $ liste [" file " ] = " support_message_list.php " ;
19+ $ liste [' file ' ] = ' support_message_list.php ' ;
2020
2121//* Script file of the edit form
22- $ liste [" edit_file " ] = " support_message_edit.php " ;
22+ $ liste [' edit_file ' ] = ' support_message_edit.php ' ;
2323
2424//* Script File of the delete script
25- $ liste [" delete_file " ] = " support_message_del.php " ;
25+ $ liste [' delete_file ' ] = ' support_message_del.php ' ;
2626
2727//* Paging Template
28- $ liste [" paging_tpl " ] = " templates/paging.tpl.htm " ;
28+ $ liste [' paging_tpl ' ] = ' templates/paging.tpl.htm ' ;
2929
3030//* Enable auth
31- $ liste [" auth " ] = " yes " ;
31+ $ liste [' auth ' ] = ' yes ' ;
3232
3333
3434/*****************************************************
3535* Search fields
3636*****************************************************/
3737
38- $ liste [" item " ][] = array ( 'field ' => " sender_id " ,
39- 'datatype ' => " VARCHAR " ,
40- 'formtype ' => " SELECT " ,
41- 'op ' => " = " ,
42- 'prefix ' => "" ,
43- 'suffix ' => "" ,
44- 'width ' => "" ,
38+ $ liste [' item ' ][] = array ( 'field ' => ' sender_id ' ,
39+ 'datatype ' => ' VARCHAR ' ,
40+ 'formtype ' => ' SELECT ' ,
41+ 'op ' => ' = ' ,
42+ 'prefix ' => '' ,
43+ 'suffix ' => '' ,
44+ 'width ' => '' ,
4545 'datasource ' => array ( 'type ' => 'SQL ' ,
4646 'querystring ' => 'SELECT userid,username FROM sys_user WHERE {AUTHSQL} ORDER BY username ' ,
4747 'keyfield ' => 'userid ' ,
4848 'valuefield ' => 'username '
4949 ),
50- 'value ' => "" );
51-
52- $ liste [" item " ][] = array ( 'field ' => " subject " ,
53- 'datatype ' => " VARCHAR " ,
54- 'formtype ' => " TEXT " ,
55- 'op ' => " like " ,
56- 'prefix ' => " % " ,
57- 'suffix ' => " % " ,
58- 'width ' => "" ,
59- 'value ' => "" );
50+ 'value ' => '' );
51+
52+ $ liste [' item ' ][] = array ( 'field ' => ' subject ' ,
53+ 'datatype ' => ' VARCHAR ' ,
54+ 'formtype ' => ' TEXT ' ,
55+ 'op ' => ' like ' ,
56+ 'prefix ' => ' % ' ,
57+ 'suffix ' => ' % ' ,
58+ 'width ' => '' ,
59+ 'value ' => '' );
6060
6161
6262?>
0 commit comments