Marius Cramer
2013-11-14 b1a6a5a3991cec5cd08873b01376e45d0b247f18
interface/web/client/list/domain.list.php
@@ -40,63 +40,63 @@
// Name of the list
$liste["name"]             = "domain";
$liste["name"]     = "domain";
// Database table
$liste["table"]          = "domain";
$liste["table"]    = "domain";
// Index index field of the database table
$liste["table_idx"]         = "domain_id";
$liste["table_idx"]   = "domain_id";
// 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 of the list
$liste["file"]            = "domain_list.php";
$liste["file"]    = "domain_list.php";
// Script file of the edit form
$liste["edit_file"]         = "domain_edit.php";
$liste["edit_file"]   = "domain_edit.php";
// Script File of the delete script
$liste["delete_file"]      = "domain_del.php";
$liste["delete_file"]  = "domain_del.php";
// Paging Template
$liste["paging_tpl"]      = "templates/paging.tpl.htm";
$liste["paging_tpl"]  = "templates/paging.tpl.htm";
// Enable auth
$liste["auth"]            = "yes";
$liste["auth"]    = "yes";
/*****************************************************
* Suchfelder
*****************************************************/
$liste["item"][] = array(   'field'      => "domain",
                     'datatype'   => "VARCHAR",
                            'filters'   => array( 0 => array( 'event' => 'SHOW',
                                                              'type' => 'IDNTOUTF8')
                                                ),
                     'formtype'   => "TEXT",
                     'op'      => "LIKE",
                     'prefix'   => "%",
                     'suffix'   => "%",
                     'width'      => "",
                     'value'      => "");
$liste["item"][] = array( 'field'  => "domain",
   'datatype' => "VARCHAR",
   'filters'   => array( 0 => array( 'event' => 'SHOW',
         'type' => 'IDNTOUTF8')
   ),
   'formtype' => "TEXT",
   'op'  => "LIKE",
   'prefix' => "%",
   'suffix' => "%",
   'width'  => "",
   'value'  => "");
$liste["item"][] = array(   'field'      => "sys_groupid",
                     'datatype'   => "VARCHAR",
                     'formtype'   => "SELECT",
                     'op'      => "=",
                     'prefix'   => "",
                     'suffix'   => "",
                     'datasource'   => array (    'type'   => 'SQL',
                                          'querystring' => 'SELECT a.groupid, a.name FROM sys_group a, domain b WHERE (a.groupid = b.sys_groupid) AND ({AUTHSQL-B}) ORDER BY name',
                                          'keyfield'=> 'groupid',
                                          'valuefield'=> 'name'
                                          ),
                     'width'      => "",
                     'value'      => "");
$liste["item"][] = array( 'field'  => "sys_groupid",
   'datatype' => "VARCHAR",
   'formtype' => "SELECT",
   'op'  => "=",
   'prefix' => "",
   'suffix' => "",
   'datasource' => array (  'type' => 'SQL',
      'querystring' => 'SELECT a.groupid, a.name FROM sys_group a, domain b WHERE (a.groupid = b.sys_groupid) AND ({AUTHSQL-B}) ORDER BY name',
      'keyfield'=> 'groupid',
      'valuefield'=> 'name'
   ),
   'width'  => "",
   'value'  => "");
?>
?>