Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
cf71a467
Commit
cf71a467
authored
Mar 17, 2007
by
tbrehm
Browse files
Rebuild the complete interface to use ajax.
parent
cc4f64a6
Changes
252
Hide whitespace changes
Inline
Side-by-side
interface/lib/app.inc.php
View file @
cf71a467
...
...
@@ -169,6 +169,7 @@ class app {
}
$this
->
tpl
->
setVar
(
'app_title'
,
$conf
[
"app_title"
]);
$this
->
tpl
->
setVar
(
'delete_confirmation'
,
$this
->
lng
(
'delete_confirmation'
));
$this
->
tpl
->
setVar
(
'app_module'
,
$_SESSION
[
"s"
][
"module"
][
"name"
]);
}
...
...
interface/lib/classes/listform.inc.php
View file @
cf71a467
...
...
@@ -194,7 +194,7 @@ class listform {
$pages
=
intval
((
$record_count
[
"anzahl"
]
-
1
)
/
$records_per_page
);
$vars
[
"list_file"
]
=
$this
->
listDef
[
"file"
];
$vars
[
"list_file"
]
=
$_SESSION
[
"s"
][
"module"
][
"name"
]
.
'/'
.
$this
->
listDef
[
"file"
];
$vars
[
"page"
]
=
$_SESSION
[
"search"
][
$list_name
][
"page"
];
$vars
[
"last_page"
]
=
$_SESSION
[
"search"
][
$list_name
][
"page"
]
-
1
;
$vars
[
"next_page"
]
=
$_SESSION
[
"search"
][
$list_name
][
"page"
]
+
1
;
...
...
@@ -202,6 +202,7 @@ class listform {
$vars
[
"max_pages"
]
=
$pages
+
1
;
$vars
[
"records_gesamt"
]
=
$record_count
[
"anzahl"
];
$vars
[
"page_params"
]
=
$this
->
listDef
[
"page_params"
];
//$vars["module"] = $_SESSION["s"]["module"]["name"];
if
(
$_SESSION
[
"search"
][
$list_name
][
"page"
]
>
0
)
$vars
[
"show_page_back"
]
=
1
;
...
...
@@ -217,11 +218,11 @@ class listform {
function
getPagingHTML
(
$vars
)
{
global
$app
;
$content
=
'<a href="'
.
$vars
[
"list_file"
]
.
'?page=0'
.
$vars
[
"page_params"
]
.
'"><img src="
../
themes/grey/images/btn_left.png" border="0"></a> '
;
if
(
$vars
[
"show_page_back"
]
==
1
)
$content
.
=
'<a href="'
.
$vars
[
"list_file"
]
.
'?page='
.
$vars
[
"last_page"
]
.
$vars
[
"page_params"
]
.
'"><img src="
../
themes/grey/images/btn_back.png" border="0"></a> '
;
$content
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
"list_file"
]
.
'?page=0'
.
$vars
[
"page_params"
]
.
"');"
.
'"><img src="themes/grey/images/btn_left.png" border="0"></a> '
;
if
(
$vars
[
"show_page_back"
]
==
1
)
$content
.
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
"list_file"
]
.
'?page='
.
$vars
[
"last_page"
]
.
$vars
[
"page_params"
]
.
"');"
.
'"><img src="themes/grey/images/btn_back.png" border="0"></a> '
;
$content
.
=
' '
.
$app
->
lng
(
'Page'
)
.
' '
.
$vars
[
"next_page"
]
.
' '
.
$app
->
lng
(
'of'
)
.
' '
.
$vars
[
"max_pages"
]
.
' '
;
if
(
$vars
[
"show_page_next"
]
==
1
)
$content
.
=
'<a href="'
.
$vars
[
"list_file"
]
.
'?page='
.
$vars
[
"next_page"
]
.
$vars
[
"page_params"
]
.
'"><img src="
../
themes/grey/images/btn_next.png" border="0"></a> '
;
$content
.
=
'<a href="'
.
$vars
[
"list_file"
]
.
'?page='
.
$vars
[
"pages"
]
.
$vars
[
"page_params"
]
.
'"> <img src="
../
themes/grey/images/btn_right.png" border="0"></a>'
;
if
(
$vars
[
"show_page_next"
]
==
1
)
$content
.
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
"list_file"
]
.
'?page='
.
$vars
[
"next_page"
]
.
$vars
[
"page_params"
]
.
"');"
.
'"><img src="themes/grey/images/btn_next.png" border="0"></a> '
;
$content
.
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
"list_file"
]
.
'?page='
.
$vars
[
"pages"
]
.
$vars
[
"page_params"
]
.
"');"
.
'"> <img src="themes/grey/images/btn_right.png" border="0"></a>'
;
return
$content
;
}
...
...
interface/lib/classes/listform_tpl_generator.inc.php
View file @
cf71a467
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class
listform_tpl_generator
{
function
buildHTML
(
$listDef
,
$module
=
''
)
{
global
$app
;
$lang
=
array
();
$html
=
'<form name="myform" action="'
.
$listDef
[
"file"
]
.
'" method="POST">
<div class="frmTextHead"><tmpl_var name="list_head_txt"></div><br />
<table width="100%" border="0" cellspacing="0" cellpadding="4">
<tr>
'
;
$lang
[
"list_head_txt"
]
=
$listDef
[
"name"
];
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <td class=
\"
tblHead
\"
><tmpl_var name=
\"
"
.
$key
.
"_txt
\"
></td>
\r\n
"
;
$lang
[
$key
.
"_txt"
]
=
$key
;
}
$html
.
=
' <td class="tblHead"> </td>
</tr>
<tr>
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
if
(
$field
[
"formtype"
]
==
'SELECT'
)
{
$html
.
=
" <td class=
\"
frmText11
\"
><select name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
onChange=
\"
document.myform.submit();
\"
>{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}</select></td>
\r\n
"
;
}
else
{
$html
.
=
" <td class=
\"
frmText11
\"
><input type=
\"
text
\"
name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
value=
\"
{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}
\"
class=
\"
text
\"
/></td>
\r\n
"
;
}
}
$html
.
=
' <td class="frmText11" align="right"><input name="Filter" type="submit" id="Filter" value="{tmpl_var name="filter_txt"}"></td>
</tr>
<tmpl_loop name="records">
<tr bgcolor="{tmpl_var name="bgcolor"}">
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <td class=
\"
frmText11
\"
><a href=
\"
"
.
$listDef
[
"edit_file"
]
.
"?id={tmpl_var name='id'}
\"
class=
\"
frmText11
\"
>{tmpl_var name=
\"
"
.
$key
.
"
\"
}</a></td>
\r\n
"
;
}
$html
.
=
" <td class=
\"
frmText11
\"
align=
\"
right
\"
>[<a href=
\"
javascript: del_record('"
.
$listDef
[
"delete_file"
]
.
"?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}');
\"
class=
\"
frmText11
\"
>{tmpl_var name='delete_txt'}</a>]</td>
</tr>
</tmpl_loop>
"
;
$html
.
=
'
<tr>
<td colspan="'
.
(
count
(
$listDef
[
"item"
])
+
1
)
.
'" height="40" align="center" class="tblFooter"><tmpl_var name="paging"></td>
</tr>
</table>
</form>'
;
if
(
$module
==
''
)
{
$filename
=
'templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
else
{
$filename
=
'../'
.
$module
.
'/templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
// speichere Template
if
(
!
$handle
=
fopen
(
$filename
,
'w'
))
{
print
"Cannot open file (
$filename
)"
;
exit
;
}
if
(
!
fwrite
(
$handle
,
$html
))
{
print
"Cannot write to file (
$filename
)"
;
exit
;
}
fclose
(
$handle
);
$lang
[
"page_txt"
]
=
'Page'
;
$lang
[
"page_of_txt"
]
=
'of'
;
$lang
[
"page_next_txt"
]
=
'Next'
;
$lang
[
"page_back_txt"
]
=
'Back'
;
$lang
[
"delete_txt"
]
=
'Delete'
;
$lang
[
"filter_txt"
]
=
'Filter'
;
// speichere language Datei
$this
->
lng_add
(
$lang
,
$listDef
,
$module
);
}
function
lng_add
(
$lang
,
$listDef
,
$module
=
''
)
{
global
$go_api
,
$go_info
,
$conf
;
if
(
$module
==
''
)
{
$lng_file
=
"lib/lang/"
.
$conf
[
"language"
]
.
"_"
.
$listDef
[
'name'
]
.
"_list.lng"
;
}
else
{
$lng_file
=
'../'
.
$module
.
"/lib/lang/en_"
.
$listDef
[
'name'
]
.
"_list.lng"
;
}
if
(
is_file
(
$lng_file
))
{
include_once
(
$lng_file
);
}
else
{
$wb
=
array
();
}
$wb_out
=
array_merge
(
$wb
,
$lang
);
if
(
is_array
(
$wb_out
))
{
$fp
=
fopen
(
$lng_file
,
"w"
);
fwrite
(
$fp
,
"<?php
\r\n
"
);
foreach
(
$wb_out
as
$key
=>
$val
)
{
$new_line
=
'$wb["'
.
$key
.
'"] = '
.
"'
$val
';
\r\n
"
;
fwrite
(
$fp
,
$new_line
);
}
fwrite
(
$fp
,
"?>"
);
fclose
(
$fp
);
}
}
}
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class
listform_tpl_generator
{
function
buildHTML
(
$listDef
,
$module
=
''
)
{
global
$app
;
if
(
$module
==
''
)
$module
=
$_SESSION
[
"s"
][
"module"
][
"name"
];
$lang
=
array
();
$html
=
'<div class="frmTextHead"><tmpl_var name="list_head_txt"></div><br />
<input type="button" value="{tmpl_var name="add_new_record_txt"}" class="button" onClick="'
.
"loadContent('"
.
$module
.
"/"
.
$listDef
[
"edit_file"
]
.
"');"
.
'" /><div class="buttonEnding"></div><br /><br />
<table width="100%" border="0" cellspacing="0" cellpadding="4" class="listTable">
<tr>
'
;
$lang
[
"list_head_txt"
]
=
$listDef
[
"name"
];
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <td class=
\"
tblHead
\"
><tmpl_var name=
\"
"
.
$key
.
"_txt
\"
></td>
\r\n
"
;
$lang
[
$key
.
"_txt"
]
=
$key
;
}
$html
.
=
' <td class="tblHead"> </td>
</tr>
<tr>
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
if
(
$field
[
"formtype"
]
==
'SELECT'
)
{
$html
.
=
" <td class=
\"
frmText11
\"
><select name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
onChange=
\"
submitForm('pageForm','"
.
$module
.
"/"
.
$listDef
[
"file"
]
.
"');
\"
>{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}</select></td>
\r\n
"
;
}
else
{
$html
.
=
" <td class=
\"
frmText11
\"
><input type=
\"
text
\"
name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
value=
\"
{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}
\"
class=
\"
text
\"
/></td>
\r\n
"
;
}
}
$html
.
=
' <td class="frmText11" align="right"><input name="Filter" type="button" id="Filter" value="{tmpl_var name="filter_txt"}" class="button" onClick="'
.
"submitForm('pageForm','"
.
$module
.
"/"
.
$listDef
[
"file"
]
.
"');"
.
'"><div class="buttonEnding"></div></td>
</tr>
<tmpl_loop name="records">
<tr bgcolor="{tmpl_var name="bgcolor"}">
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <td class=
\"
frmText11
\"
><a href=
\"
#
\"
onClick=
\"
loadContent('"
.
$module
.
"/"
.
$listDef
[
"edit_file"
]
.
"?id={tmpl_var name='id'}');
\"
class=
\"
frmText11
\"
>{tmpl_var name=
\"
"
.
$key
.
"
\"
}</a></td>
\r\n
"
;
}
$html
.
=
" <td class=
\"
frmText11
\"
align=
\"
right
\"
>[<a href=
\"
javascript: del_record('"
.
$module
.
"/"
.
$listDef
[
"delete_file"
]
.
"?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}');
\"
class=
\"
frmText11
\"
>{tmpl_var name='delete_txt'}</a>]</td>
</tr>
</tmpl_loop>
"
;
$html
.
=
'
<tr>
<td colspan="'
.
(
count
(
$listDef
[
"item"
])
+
1
)
.
'" height="40" align="center" class="tblFooter"><tmpl_var name="paging"></td>
</tr>
</table>'
;
if
(
$module
==
''
)
{
$filename
=
'templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
else
{
$filename
=
'../'
.
$module
.
'/templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
// speichere Template
if
(
!
$handle
=
fopen
(
$filename
,
'w'
))
{
print
"Cannot open file (
$filename
)"
;
exit
;
}
if
(
!
fwrite
(
$handle
,
$html
))
{
print
"Cannot write to file (
$filename
)"
;
exit
;
}
fclose
(
$handle
);
$lang
[
"page_txt"
]
=
'Page'
;
$lang
[
"page_of_txt"
]
=
'of'
;
$lang
[
"page_next_txt"
]
=
'Next'
;
$lang
[
"page_back_txt"
]
=
'Back'
;
$lang
[
"delete_txt"
]
=
'Delete'
;
$lang
[
"filter_txt"
]
=
'Filter'
;
// speichere language Datei
$this
->
lng_add
(
$lang
,
$listDef
,
$module
);
}
function
lng_add
(
$lang
,
$listDef
,
$module
=
''
)
{
global
$go_api
,
$go_info
,
$conf
;
if
(
$module
==
''
)
{
$lng_file
=
"lib/lang/"
.
$conf
[
"language"
]
.
"_"
.
$listDef
[
'name'
]
.
"_list.lng"
;
}
else
{
$lng_file
=
'../'
.
$module
.
"/lib/lang/en_"
.
$listDef
[
'name'
]
.
"_list.lng"
;
}
if
(
is_file
(
$lng_file
))
{
include_once
(
$lng_file
);
}
else
{
$wb
=
array
();
}
$wb_out
=
array_merge
(
$lang
,
$wb
);
if
(
is_array
(
$wb_out
))
{
$fp
=
fopen
(
$lng_file
,
"w"
);
fwrite
(
$fp
,
"<?php
\r\n
"
);
foreach
(
$wb_out
as
$key
=>
$val
)
{
$new_line
=
'$wb["'
.
$key
.
'"] = '
.
"'
$val
';
\r\n
"
;
fwrite
(
$fp
,
$new_line
);
}
fwrite
(
$fp
,
"?>"
);
fclose
(
$fp
);
}
}
}
?>
\ No newline at end of file
interface/lib/classes/tform_tpl_generator.inc.php
View file @
cf71a467
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class
tform_tpl_generator
{
function
buildHTML
(
$formDef
,
$tab
)
{
global
$app
;
$html
=
'<table width="500" border="0" cellspacing="0" cellpadding="2">'
;
$lang
=
array
();
foreach
(
$formDef
[
'tabs'
][
$tab
][
'fields'
]
as
$key
=>
$field
)
{
switch
(
$field
[
'formtype'
])
{
case
'TEXT'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
><input name=
\"
"
.
$key
.
"
\"
type=
\"
text
\"
class=
\"
text
\"
value=
\"
{tmpl_var name='"
.
$key
.
"'}
\"
size=
\"
"
.
$field
[
'width'
]
.
"
\"
maxlength=
\"
"
.
$field
[
'maxlength'
]
.
"
\"
></td>
</tr>"
;
break
;
case
'TEXTAREA'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
><textarea name='
$key
' cols='"
.
$field
[
'cols'
]
.
"' rows='"
.
$field
[
'rows'
]
.
"'>{tmpl_var name='"
.
$key
.
"'}</textarea></td>
</tr>"
;
break
;
case
'SELECT'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
>
<select name=
\"
"
.
$key
.
"
\"
class=
\"
text
\"
>
{tmpl_var name='"
.
$key
.
"'}
</select>
</td>
</tr>"
;
break
;
case
'MULTIPLE'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
>
<select name=
\"
"
.
$key
.
"
\"
class=
\"
text
\"
size=
\"
"
.
$field
[
'rows'
]
.
"
\"
multiple>
{tmpl_var name='"
.
$key
.
"'}
</select>
</td>
</tr>"
;
break
;
case
'PASSWORD'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
><input name=
\"
"
.
$key
.
"
\"
type=
\"
password
\"
class=
\"
text
\"
value=
\"
{tmpl_var name='"
.
$key
.
"'}
\"
size=
\"
"
.
$field
[
'width'
]
.
"
\"
maxlength=
\"
"
.
$field
[
'maxlength'
]
.
"
\"
></td>
</tr>"
;
break
;
case
'CHECKBOX'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"'}</td>
</tr>"
;
break
;
case
'CHECKBOXARRAY'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"'}</td>
</tr>"
;
break
;
case
'RADIO'
:
$html
.
=
"
<tr>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"_txt'}:</td>
<td class=
\"
frmText11
\"
>{tmpl_var name='"
.
$key
.
"'}</td>
</tr>"
;
break
;
}
// Language File Eintrag fr "Feld-Titel" anlegen
$lang
[
$key
.
"_txt"
]
=
$key
;
// language File Eintrag, fr error-Text anlegen
if
(
$field
[
"errmsg"
]
!=
''
)
{
$errmsg
=
$field
[
"errmsg"
];
$lang
[
$errmsg
]
=
$errmsg
;
}
}
$html
.
=
" <tr>
<td class=
\"
frmText11
\"
> </td>
<td class=
\"
frmText11
\"
> </td>
</tr>
<tr>
<td> </td>
<td><input name=
\"
btn_save
\"
type=
\"
submit
\"
class=
\"
button
\"
value=
\"
{tmpl_var name='btn_save_txt'}
\"
>
<input name=
\"
btn_cancel
\"
type=
\"
button
\"
class=
\"
button
\"
value=
\"
{tmpl_var name='btn_cancel_txt'}
\"
onClick=
\"
self.location.href='"
.
$formDef
[
"list_default"
]
.
"';
\"
>
</td>
</tr>"
;
$lang
[
'btn_save_txt'
]
=
"Save"
;
$lang
[
'btn_cancel_txt'
]
=
"Cancel"
;
$html
.
=
"
\r\n
</table>
\r\n
<input type=
\"
hidden
\"
name=
\"
id
\"
value=
\"
{tmpl_var name='id'}
\"
>"
;
// speichere Template
if
(
!
$handle
=
fopen
(
$formDef
[
'tabs'
][
$tab
][
'template'
],
'w'
))
{
print
"Cannot open file (
$filename
)"
;
exit
;
}
if
(
!
fwrite
(
$handle
,
$html
))
{
print
"Cannot write to file (
$filename
)"
;
exit
;
}
fclose
(
$handle
);
// speichere language Datei
$this
->
lng_add
(
$lang
,
$formDef
);
// berprfe, ob es die Tabelle schon gibt,
// ansonsten wird sie angelegt
$tables
=
$app
->
db
->
getTables
();
if
(
!@
in_array
(
$formDef
[
'db_table'
],
$tables
))
{
// Datenbank noch nicht vorhanden
$columns
=
array
();
// fge ID Feld hinzu
$col
=
array
(
'action'
=>
'add'
,
'name'
=>
$formDef
[
"db_table_idx"
],
'type'
=>
'int64'
,
'typeValue'
=>
''
,
'defaultValue'
=>
false
,
'notNull'
=>
true
,
'autoInc'
=>
true
,
'option'
=>
'primary'
);
$columns
[]
=
$col
;
$app
->
db
->
show_error_messages
=
true
;
if
(
$formDef
[
"auth"
]
==
'yes'
)
{
$col
=
array
(
'action'
=>
'add'
,
'name'
=>
'sys_userid'
,
'type'
=>
'int32'
,
'typeValue'
=>
''
,
'defaultValue'
=>
'0'
,
'notNull'
=>
true
);
$columns
[]
=
$col
;
$col
=
array
(
'action'
=>
'add'
,
'name'
=>
'sys_groupid'
,
'type'
=>
'int32'
,
'typeValue'
=>
''
,
'defaultValue'
=>
'0'
,
'notNull'
=>
true
);
$columns
[]
=
$col
;
$col
=
array
(
'action'
=>
'add'
,
'name'
=>
'sys_perm_user'
,
'type'
=>
'varchar'
,
'typeValue'
=>
'5'
,
'defaultValue'
=>
'NULL'
,
'notNull'
=>
true
);
$columns
[]
=
$col
;
$col
=
array
(
'action'
=>
'add'
,
'name'
=>
'sys_perm_group'
,
'type'
=>
'varchar'
,
'typeValue'
=>
'5'
,
'defaultValue'
=>
'NULL'
,
'notNull'
=>
true
);
$columns
[]
=
$col
;
$col
=
array
(
'action'
=>
'add'
,
'name'
=>
'sys_perm_other'
,
'type'
=>
'varchar'
,
'typeValue'
=>
'5'
,
'defaultValue'
=>
'NULL'
,
'notNull'
=>
true
);
$columns
[]
=
$col
;
}
foreach
(
$formDef
[
'tabs'
]
as
$tab
)
{
foreach
(
$tab
[
"fields"
]
as
$name
=>
$field
)
{
/*
$columns = array(action => add | alter | drop
name => Spaltenname
name_new => neuer Spaltenname, nur bei 'alter' belegt
type => 42go-Meta-Type: int16, int32, int64, double, char, varchar, text, blob
typeValue => Wert z.B. bei Varchar
defaultValue => Default Wert
notNull => true | false
autoInc => true | false
option => unique | primary | index)
*/
switch
(
$field
[
"datatype"
])
{
case
'INTEGER'
:
$type
=
'int32'
;
$typevalue
=
''
;
$defaultValue
=
(
$field
[
"default"
]
!=
''
)
?
$field
[
"default"
]
:
'0'
;
break
;
case
'DOUBLE'
:
$type
=
'double'
;
$typevalue
=
''
;
$defaultValue
=
(
$field
[
"default"
]
!=
''
)
?
$field
[
"default"
]
:
'0'
;