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
kotishe
ISPConfig 3
Commits
07c297ee
Commit
07c297ee
authored
Jul 29, 2014
by
Sergio
Browse files
display prefix when user create new records
parent
8a4a1faf
Changes
5
Hide whitespace changes
Inline
Side-by-side
interface/web/sites/database_edit.php
View file @
07c297ee
...
...
@@ -146,7 +146,11 @@ class page_action extends tform_actions {
$app
->
tpl
->
setVar
(
"database_name"
,
$app
->
tools_sites
->
removePrefix
(
$this
->
dataRecord
[
'database_name'
],
$this
->
dataRecord
[
'database_name_prefix'
],
$dbname_prefix
));
}
$app
->
tpl
->
setVar
(
"database_name_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'database_name_prefix'
],
$dbname_prefix
,
$global_config
[
'dbname_prefix'
]));
if
(
$this
->
dataRecord
[
'database_name'
]
==
""
&&
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
$app
->
tpl
->
setVar
(
"database_name_prefix"
,
$dbname_prefix
);
}
else
{
$app
->
tpl
->
setVar
(
"database_name_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'database_name_prefix'
],
$dbname_prefix
,
$global_config
[
'dbname_prefix'
]));
}
if
(
$this
->
id
>
0
)
{
//* we are editing a existing record
...
...
interface/web/sites/database_user_edit.php
View file @
07c297ee
...
...
@@ -103,8 +103,11 @@ class page_action extends tform_actions {
$app
->
tpl
->
setVar
(
"database_user"
,
$app
->
tools_sites
->
removePrefix
(
$this
->
dataRecord
[
'database_user'
],
$this
->
dataRecord
[
'database_user_prefix'
],
$dbuser_prefix
));
}
$app
->
tpl
->
setVar
(
"database_user_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'database_user_prefix'
],
$dbuser_prefix
,
$global_config
[
'dbuser_prefix'
]));
if
(
$this
->
dataRecord
[
'database_user'
]
==
""
&&
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
$app
->
tpl
->
setVar
(
"database_user_prefix"
,
$dbuser_prefix
);
}
else
{
$app
->
tpl
->
setVar
(
"database_user_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'database_user_prefix'
],
$dbuser_prefix
,
$global_config
[
'dbuser_prefix'
]));
}
parent
::
onShowEnd
();
}
...
...
interface/web/sites/ftp_user_edit.php
View file @
07c297ee
...
...
@@ -82,7 +82,11 @@ class page_action extends tform_actions {
$app
->
tpl
->
setVar
(
"username"
,
$app
->
tools_sites
->
removePrefix
(
$this
->
dataRecord
[
'username'
],
$this
->
dataRecord
[
'username_prefix'
],
$ftpuser_prefix
));
}
$app
->
tpl
->
setVar
(
"username_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'username_prefix'
],
$ftpuser_prefix
,
$global_config
[
'ftpuser_prefix'
]));
if
(
$this
->
dataRecord
[
'username'
]
==
""
&&
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
$app
->
tpl
->
setVar
(
"username_prefix"
,
$ftpuser_prefix
);
}
else
{
$app
->
tpl
->
setVar
(
"username_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'username_prefix'
],
$ftpuser_prefix
,
$global_config
[
'ftpuser_prefix'
]));
}
parent
::
onShowEnd
();
}
...
...
interface/web/sites/shell_user_edit.php
View file @
07c297ee
...
...
@@ -82,7 +82,11 @@ class page_action extends tform_actions {
$app
->
tpl
->
setVar
(
"username"
,
$app
->
tools_sites
->
removePrefix
(
$this
->
dataRecord
[
'username'
],
$this
->
dataRecord
[
'username_prefix'
],
$shelluser_prefix
));
}
$app
->
tpl
->
setVar
(
"username_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'username_prefix'
],
$shelluser_prefix
,
$global_config
[
'shelluser_prefix'
]));
if
(
$this
->
dataRecord
[
'username'
]
==
""
&&
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
$app
->
tpl
->
setVar
(
"username_prefix"
,
$shelluser_prefix
);
}
else
{
$app
->
tpl
->
setVar
(
"username_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'username_prefix'
],
$shelluser_prefix
,
$global_config
[
'shelluser_prefix'
]));
}
if
(
$this
->
id
>
0
)
{
//* we are editing a existing record
...
...
interface/web/sites/webdav_user_edit.php
View file @
07c297ee
...
...
@@ -81,7 +81,11 @@ class page_action extends tform_actions {
$app
->
tpl
->
setVar
(
"username"
,
$app
->
tools_sites
->
removePrefix
(
$this
->
dataRecord
[
'username'
],
$this
->
dataRecord
[
'username_prefix'
],
$webdavuser_prefix
));
}
$app
->
tpl
->
setVar
(
"username_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'username_prefix'
],
$webdavuser_prefix
,
$global_config
[
'webdavuser_prefix'
]));
if
(
$this
->
dataRecord
[
'username'
]
==
""
&&
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
$app
->
tpl
->
setVar
(
"username_prefix"
,
$webdavuser_prefix
);
}
else
{
$app
->
tpl
->
setVar
(
"username_prefix"
,
$app
->
tools_sites
->
getPrefix
(
$this
->
dataRecord
[
'username_prefix'
],
$webdavuser_prefix
,
$global_config
[
'webdavuser_prefix'
]));
}
if
(
$this
->
id
>
0
)
{
//* we are editing a existing record
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment