Marius Burkard
2016-04-20 4569cae57f127afd093794310ccd290d2d9fdf36
commit | author | age
b0711a 1 <?php
T 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
b1a6a5 16 $liste["name"]     = "mail_user_filter";
b0711a 17
T 18 // Database table
b1a6a5 19 $liste["table"]    = "mail_user_filter";
b0711a 20
T 21 // Index index field of the database table
b1a6a5 22 $liste["table_idx"]   = "filter_id";
b0711a 23
T 24 // Search Field Prefix
b1a6a5 25 $liste["search_prefix"]  = "search_";
b0711a 26
T 27 // Records per page
b1a6a5 28 $liste["records_per_page"]  = "15";
b0711a 29
T 30 // Script File of the list
5ba765 31 $liste["file"]    = "mail_user_filter_list.php";
b0711a 32
T 33 // Script file of the edit form
b1a6a5 34 $liste["edit_file"]   = "mail_user_filter_edit.php";
b0711a 35
T 36 // Script File of the delete script
b1a6a5 37 $liste["delete_file"]  = "mail_user_filter_del.php";
b0711a 38
T 39 // Paging Template
b1a6a5 40 $liste["paging_tpl"]  = "templates/paging.tpl.htm";
b0711a 41
T 42 // Enable auth
b1a6a5 43 $liste["auth"]    = "no";
b0711a 44
T 45
46 /*****************************************************
47 * Suchfelder
48 *****************************************************/
49
b1a6a5 50 $liste["item"][] = array( 'field'  => "rulename",
MC 51     'datatype' => "VARCHAR",
52     'formtype' => "TEXT",
53     'op'  => "like",
54     'prefix' => "%",
55     'suffix' => "%",
56     'width'  => "",
57     'value'  => "");
b0711a 58
T 59
b1a6a5 60 ?>