File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed
Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ $wb['server_id_txt'] = 'Server';
44$wb['add_new_record_txt'] = 'Neue PHP Version hinzufügen';
55$wb['client_id_txt'] = 'Kunde';
66$wb['name_txt'] = 'PHP Name';
7+ $wb['active_txt'] = 'Aktiv';
78?>
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ $wb['server_id_txt'] = 'Server';
44$wb['add_new_record_txt'] = 'Add new PHP version';
55$wb['client_id_txt'] = 'Client';
66$wb['name_txt'] = 'PHP Name';
7+ $wb['active_txt'] = 'Active';
78?>
Original file line number Diff line number Diff line change 4444* Suchfelder
4545*****************************************************/
4646
47+ $ liste ['item ' ][] = array ( 'field ' => 'active ' ,
48+ 'datatype ' => 'VARCHAR ' ,
49+ 'formtype ' => 'SELECT ' ,
50+ 'op ' => '= ' ,
51+ 'prefix ' => '' ,
52+ 'suffix ' => '' ,
53+ 'width ' => '' ,
54+ 'value ' => array ('y ' => $ app ->lng ('yes_txt ' ), 'n ' => $ app ->lng ('no_txt ' )));
55+
4756$ liste ['item ' ][] = array ( 'field ' => 'server_id ' ,
4857 'datatype ' => 'INTEGER ' ,
4958 'formtype ' => 'SELECT ' ,
Original file line number Diff line number Diff line change @@ -15,12 +15,14 @@ <h1><tmpl_var name="list_head_txt"></h1>
1515< table class ="table ">
1616 < thead class ="dark form-group-sm ">
1717 < tr >
18+ < th class ="tiny-col " data-column ="active "> < tmpl _var name ="active_txt "> </ th >
1819 < th data-column ="server_id "> < tmpl _var name ="server_id_txt "> </ th >
1920 < th class ="small-col " data-column ="client_id "> < tmpl _var name ="client_id_txt "> </ th >
2021 < th data-column ="name "> < tmpl _var name ="name_txt "> </ th >
2122 < th class ="text-right "> {tmpl_var name='search_limit'}</ th >
2223 </ tr >
2324 < tr >
25+ < td > < select class ="form-control " name ="search_active "> {tmpl_var name='search_active'}</ select > </ td >
2426 < td > < select class ="form-control " name ="search_server_id "> {tmpl_var name='search_server_id'}</ select > </ td >
2527 < td > < select class ="form-control " name ="search_client_id "> {tmpl_var name='search_client_id'}</ select > </ td >
2628 < td > < input class ="form-control " type ="text " name ="search_name " value ="{tmpl_var name='search_name'} " /> </ td >
@@ -32,6 +34,7 @@ <h1><tmpl_var name="list_head_txt"></h1>
3234 < tbody >
3335 < tmpl _loop name ="records ">
3436 < tr >
37+ < td > < a href ="# " data-load-content ="admin/server_php_edit.php?id={tmpl_var name='id'} "> {tmpl_var name="active"}</ a > </ td >
3538 < td > < a href ="# " data-load-content ="admin/server_php_edit.php?id={tmpl_var name='id'} "> {tmpl_var name="server_id"}</ a > </ td >
3639 < td > < a href ="# " data-load-content ="admin/server_php_edit.php?id={tmpl_var name='id'} "> {tmpl_var name="client_id"}</ a > </ td >
3740 < td > < a href ="# " data-load-content ="admin/server_php_edit.php?id={tmpl_var name='id'} "> {tmpl_var name="name"}</ a > </ td >
@@ -54,4 +57,4 @@ <h1><tmpl_var name="list_head_txt"></h1>
5457 </ table >
5558</ div >
5659
57-
60+
You can’t perform that action at this time.
0 commit comments