Marius Cramer
2013-11-14 7fe908c50c8dbc5cc05f571dbe11d66141caacd4
interface/web/admin/list/groups.list.php
@@ -10,52 +10,52 @@
*/
//* Name of list
$liste['name']             = 'groups';
$liste['name']     = 'groups';
//* Database table
$liste['table']          = 'sys_group';
$liste['table']    = 'sys_group';
//* Primary index column
$liste['table_idx']         = 'groupid';
$liste['table_idx']   = 'groupid';
//* Search Field Prefix
$liste['search_prefix']    = 'search_';
$liste['search_prefix']  = 'search_';
//* Records per page
$liste['records_per_page']    = "15";
$liste['records_per_page']  = "15";
//* Script file for listing
$liste['file']            = 'groups_list.php';
$liste['file']    = 'groups_list.php';
//* Script file to edit
$liste['edit_file']         = 'groups_edit.php';
$liste['edit_file']   = 'groups_edit.php';
//* Script file for deleting
$liste['delete_file']      = 'groups_del.php';
$liste['delete_file']  = 'groups_del.php';
//* Paging Template
$liste['paging_tpl']      = 'templates/paging.tpl.htm';
$liste['paging_tpl']  = 'templates/paging.tpl.htm';
//* Enable auth
$liste['auth']            = 'no';
$liste['auth']    = 'no';
/*****************************************************
* Suchfelder
*****************************************************/
$liste['item'][] = array(   'field'      => 'name',
                     'datatype'   => 'VARCHAR',
                     'op'      => 'like',
                     'prefix'   => '%',
                     'suffix'   => '%',
                     'width'      => '');
$liste['item'][] = array( 'field'  => 'name',
   'datatype' => 'VARCHAR',
   'op'  => 'like',
   'prefix' => '%',
   'suffix' => '%',
   'width'  => '');
$liste['item'][] = array(   'field'      => 'description',
                     'datatype'   => 'VARCHAR',
                     'op'      => 'like',
                     'prefix'   => '%',
                     'suffix'   => '%',
                     'width'      => '');
$liste['item'][] = array( 'field'  => 'description',
   'datatype' => 'VARCHAR',
   'op'  => 'like',
   'prefix' => '%',
   'suffix' => '%',
   'width'  => '');
?>
?>