Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
5d4929d5
Commit
5d4929d5
authored
Dec 28, 2011
by
tbrehm
Browse files
Reverted changes from revisions 2824 and 2825.
parent
23fd8e3d
Changes
1000
Expand all
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 1000+
files are displayed.
Plain diff
Email patch
interface/ispconfig/interface/admin/firewall_del.php
deleted
100644 → 0
View file @
23fd8e3d
<?php
/*
Copyright (c) 2008, 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.
*/
/******************************************
* Begin Form configuration
******************************************/
$list_def_file
=
"list/firewall.list.php"
;
$tform_def_file
=
"form/firewall.tform.php"
;
/******************************************
* End Form configuration
******************************************/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
//* Check permissions for module
$app
->
auth
->
check_module_permissions
(
'admin'
);
$app
->
uses
(
"tform_actions"
);
$app
->
tform_actions
->
onDelete
();
?>
\ No newline at end of file
interface/ispconfig/interface/admin/firewall_edit.php
deleted
100644 → 0
View file @
23fd8e3d
<?php
/*
Copyright (c) 2008, 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.
*/
/******************************************
* Begin Form configuration
******************************************/
$tform_def_file
=
"form/firewall.tform.php"
;
/******************************************
* End Form configuration
******************************************/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
//* Check permissions for module
$app
->
auth
->
check_module_permissions
(
'admin'
);
// Loading classes
$app
->
uses
(
'tpl,tform,tform_actions'
);
$app
->
load
(
'tform_actions'
);
class
page_action
extends
tform_actions
{
function
onBeforeUpdate
()
{
global
$app
,
$conf
;
//* Check if the server has been changed
// We do this only for the admin or reseller users, as normal clients can not change the server ID anyway
if
(
$_SESSION
[
"s"
][
"user"
][
"typ"
]
==
'admin'
||
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
$rec
=
$app
->
db
->
queryOneRecord
(
"SELECT server_id from firewall WHERE firewall_id = "
.
$this
->
id
);
if
(
$rec
[
'server_id'
]
!=
$this
->
dataRecord
[
"server_id"
])
{
//* Add a error message and switch back to old server
$app
->
tform
->
errorMessage
.
=
$app
->
lng
(
'The Server can not be changed.'
);
$this
->
dataRecord
[
"server_id"
]
=
$rec
[
'server_id'
];
}
unset
(
$rec
);
}
}
}
$page
=
new
page_action
;
$page
->
onLoad
();
?>
\ No newline at end of file
interface/ispconfig/interface/admin/firewall_list.php
deleted
100644 → 0
View file @
23fd8e3d
<?php
/*
Copyright (c) 2008, 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.
*/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
/******************************************
* Begin Form configuration
******************************************/
$list_def_file
=
"list/firewall.list.php"
;
/******************************************
* End Form configuration
******************************************/
//* Check permissions for module
$app
->
auth
->
check_module_permissions
(
'admin'
);
$app
->
uses
(
'listform_actions'
);
$app
->
listform_actions
->
onLoad
();
?>
\ No newline at end of file
interface/ispconfig/interface/admin/form/dbsync.tform.php
deleted
100644 → 0
View file @
23fd8e3d
<?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.
*/
/*
Form Definition
Tabellendefinition
Datentypen:
- INTEGER (Wandelt Ausdr�cke in Int um)
- DOUBLE
- CURRENCY (Formatiert Zahlen nach W�hrungsnotation)
- VARCHAR (kein weiterer Format Check)
- TEXT (kein weiterer Format Check)
- DATE (Datumsformat, Timestamp Umwandlung)
Formtype:
- TEXT (normales Textfeld)
- TEXTAREA (normales Textfeld)
- PASSWORD (Feldinhalt wird nicht angezeigt)
- SELECT (Gibt Werte als option Feld aus)
- RADIO
- CHECKBOX
- CHECKBOXARRAY
- FILE
VALUE:
- Wert oder Array
Hinweis:
Das ID-Feld ist nicht bei den Table Values einzuf�gen.
*/
//* Load modules
$modules_list
=
array
();
$handle
=
@
opendir
(
ISPC_WEB_PATH
);
while
(
$file
=
@
readdir
(
$handle
))
{
if
(
$file
!=
"."
&&
$file
!=
".."
)
{
if
(
@
is_dir
(
ISPC_WEB_PATH
.
"/
$file
"
))
{
if
(
is_file
(
ISPC_WEB_PATH
.
"/
$file
/lib/module.conf.php"
)
and
$file
!=
'login'
)
{
$modules_list
[
$file
]
=
$file
;
}
}
}
}
closedir
(
$handle
);
//* read data bases in with more activated db_history.
$db_tables
=
array
();
foreach
(
$modules_list
as
$md
)
{
$handle
=
@
opendir
(
ISPC_WEB_PATH
.
"/
$md
/form"
);
while
(
$file
=
@
readdir
(
$handle
))
{
if
(
$file
!=
'.'
&&
$file
!=
'..'
&&
substr
(
$file
,
0
,
1
)
!=
'.'
)
{
include_once
(
ISPC_WEB_PATH
.
"/
$md
/form/
$file
"
);
if
(
isset
(
$form
[
'db_history'
])
&&
$form
[
'db_history'
]
==
'yes'
)
{
$tmp_id
=
$form
[
'db_table'
];
$db_tables
[
$tmp_id
]
=
$form
[
'db_table'
];
}
unset
(
$form
);
}
}
closedir
(
$handle
);
}
unset
(
$form
);
$form
[
'title'
]
=
'DB sync'
;
$form
[
'description'
]
=
'ISPConfig database synchronisation tool.'
;
$form
[
'name'
]
=
'dbsync'
;
$form
[
'action'
]
=
'dbsync_edit.php'
;
$form
[
'db_table'
]
=
'sys_dbsync'
;
$form
[
'db_table_idx'
]
=
'id'
;
$form
[
'tab_default'
]
=
'dbsync'
;
$form
[
'list_default'
]
=
'dbsync_list.php'
;
$form
[
'auth'
]
=
'no'
;
$form
[
'tabs'
][
'dbsync'
]
=
array
(
'title'
=>
'DB sync'
,
'width'
=>
80
,
'template'
=>
'templates/dbsync_edit.htm'
,
'fields'
=>
array
(
##################################
# Beginn Datenbankfelder
##################################
'jobname'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
'/^.{1,30}$/'
,
'errmsg'
=>
'jobname_err'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'15'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'sync_interval_minutes'
=>
array
(
'datatype'
=>
'INTEGER'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'15'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'db_type'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'SELECT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
array
(
'mysql'
=>
'mysql'
),
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'db_host'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'db_name'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'db_username'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'db_password'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'db_tables'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'CHECKBOXARRAY'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
'admin,forms'
,
'value'
=>
$db_tables
,
'separator'
=>
','
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'empty_datalog'
=>
array
(
'datatype'
=>
'INTEGER'
,
'formtype'
=>
'CHECKBOX'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
array
(
0
=>
0
,
1
=>
1
),
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'sync_datalog_external'
=>
array
(
'datatype'
=>
'INTEGER'
,
'formtype'
=>
'CHECKBOX'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
array
(
0
=>
0
,
1
=>
1
),
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'active'
=>
array
(
'datatype'
=>
'INTEGER'
,
'formtype'
=>
'CHECKBOX'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
'1'
,
'value'
=>
array
(
0
=>
0
,
1
=>
1
),
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
)
##################################
# ENDE Datenbankfelder
##################################
)
);
?>
\ No newline at end of file
interface/ispconfig/interface/admin/form/filesync.tform.php
deleted
100644 → 0
View file @
23fd8e3d
<?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.
*/
/*
Form Definition
Tabellendefinition
Datentypen:
- INTEGER (Wandelt Ausdrcke in Int um)
- DOUBLE
- CURRENCY (Formatiert Zahlen nach Whrungsnotation)
- VARCHAR (kein weiterer Format Check)
- TEXT (kein weiterer Format Check)
- DATE (Datumsformat, Timestamp Umwandlung)
Formtype:
- TEXT (normales Textfeld)
- TEXTAREA (normales Textfeld)
- PASSWORD (Feldinhalt wird nicht angezeigt)
- SELECT (Gibt Werte als option Feld aus)
- RADIO
- CHECKBOX
- CHECKBOXARRAY
- FILE
VALUE:
- Wert oder Array
Hinweis:
Das ID-Feld ist nicht bei den Table Values einzufgen.
*/
$form
[
"title"
]
=
"Datei Synchronisation"
;
$form
[
"description"
]
=
"Formular zum Anlegen von Datei-Synchronisierungen."
;
$form
[
"name"
]
=
"filesync"
;
$form
[
"action"
]
=
"filesync_edit.php"
;
$form
[
"db_table"
]
=
"sys_filesync"
;
$form
[
"db_table_idx"
]
=
"id"
;
$form
[
"tab_default"
]
=
"filesync"
;
$form
[
"list_default"
]
=
"filesync_list.php"
;
$form
[
"auth"
]
=
'no'
;
$form
[
"tabs"
][
'filesync'
]
=
array
(
'title'
=>
"Datei sync"
,
'width'
=>
80
,
'template'
=>
"templates/filesync_edit.htm"
,
'fields'
=>
array
(
##################################
# Beginn Datenbankfelder
##################################
'jobname'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
'/^.{1,30}$/'
,
'errmsg'
=>
'jobname_err'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'15'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'sync_interval_minutes'
=>
array
(
'datatype'
=>
'INTEGER'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'15'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'ftp_host'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'ftp_path'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'ftp_username'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'ftp_password'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'regex'
=>
''
,
'errmsg'
=>
''
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,