Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
commit | author | age
d2ba64 1 <?php
MF 2
3 /*
4     Datatypes:
5     - INTEGER
6     - DOUBLE
7     - CURRENCY
8     - VARCHAR
9     - TEXT
10     - DATE
11 */
12
13
14
15 // Name of the list
16 $liste["name"]    = "xmpp_user";
17
18 // Database table
19 $liste["table"]   = "xmpp_user";
20
21 // Index index field of the database table
22 $liste["table_idx"]  = "xmppuser_id";
23
24 // Search Field Prefix
25 $liste["search_prefix"]  = "search_";
26
27 // Records per page
28 $liste["records_per_page"]  = "15";
29
30 // Script File of the list
31 $liste["file"]   = "xmpp_user_list.php";
32
33 // Script file of the edit form
34 $liste["edit_file"]  = "xmpp_user_edit.php";
35
36 // Script File of the delete script
37 $liste["delete_file"]  = "xmpp_user_del.php";
38
39 // Paging Template
40 $liste["paging_tpl"]  = "templates/paging.tpl.htm";
41
42 // Enable auth
43 $liste["auth"]   = "yes";
44
45
46 /*****************************************************
47 * Suchfelder
48 *****************************************************/
49
50 $liste["item"][] = array(   'field'     => "JID",
51     'datatype'  => "VARCHAR",
52     'filters'   => array( 0 => array( 'event' => 'SHOW',
53             'type' => 'IDNTOUTF8')
54     ),
55     'formtype'  => "TEXT",
56     'op'        => "like",
57     'prefix'    => "%",
58     'suffix'    => "%",
59     'width'     => "",
60     'value'     => "");
61
62 ?>