Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
29e1b0c9
Commit
29e1b0c9
authored
Jan 24, 2014
by
Marius Cramer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undone some changes from vhostalias merge.
parent
e60d4c7e
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
869 deletions
+11
-869
interface/lib/classes/remote.d/sites.inc.php
interface/lib/classes/remote.d/sites.inc.php
+8
-8
interface/web/data.sql
interface/web/data.sql
+0
-851
interface/web/sites/lib/remote.conf.php
interface/web/sites/lib/remote.conf.php
+0
-2
interface/web/themes/default-304/templates/main.tpl.htm
interface/web/themes/default-304/templates/main.tpl.htm
+0
-1
interface/web/themes/default/templates/main.tpl.htm
interface/web/themes/default/templates/main.tpl.htm
+0
-1
interface/web/themes/default_64_navimg/templates/main.tpl.htm
...rface/web/themes/default_64_navimg/templates/main.tpl.htm
+1
-2
interface/web/themes/default_combobox/templates/main.tpl.htm
interface/web/themes/default_combobox/templates/main.tpl.htm
+1
-2
interface/web/themes/default_no_navimg/templates/main.tpl.htm
...rface/web/themes/default_no_navimg/templates/main.tpl.htm
+1
-2
No files found.
interface/lib/classes/remote.d/sites.inc.php
View file @
29e1b0c9
...
...
@@ -455,7 +455,7 @@ class remoting_sites extends remoting {
{
global
$app
;
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
aliasdomain_get'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_aliasdomain_get'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -468,7 +468,7 @@ class remoting_sites extends remoting {
public
function
sites_web_vhost_aliasdomain_add
(
$session_id
,
$client_id
,
$params
)
{
global
$app
;
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
aliasdomain_add'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_aliasdomain_add'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -491,7 +491,7 @@ class remoting_sites extends remoting {
//* Update a record
public
function
sites_web_vhost_aliasdomain_update
(
$session_id
,
$client_id
,
$primary_id
,
$params
)
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
aliasdomain_update'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_aliasdomain_update'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -509,7 +509,7 @@ class remoting_sites extends remoting {
//* Delete a record
public
function
sites_web_vhost_aliasdomain_delete
(
$session_id
,
$primary_id
)
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
aliasdomain_delete'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_aliasdomain_delete'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -524,7 +524,7 @@ class remoting_sites extends remoting {
{
global
$app
;
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
subdomain_get'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_subdomain_get'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -537,7 +537,7 @@ class remoting_sites extends remoting {
public
function
sites_web_vhost_subdomain_add
(
$session_id
,
$client_id
,
$params
)
{
global
$app
;
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
subdomain_add'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_subdomain_add'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -560,7 +560,7 @@ class remoting_sites extends remoting {
//* Update a record
public
function
sites_web_vhost_subdomain_update
(
$session_id
,
$client_id
,
$primary_id
,
$params
)
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
subdomain_update'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_subdomain_update'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
@@ -578,7 +578,7 @@ class remoting_sites extends remoting {
//* Delete a record
public
function
sites_web_vhost_subdomain_delete
(
$session_id
,
$primary_id
)
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_
vhost_
subdomain_delete'
))
{
if
(
!
$this
->
checkPerm
(
$session_id
,
'sites_web_subdomain_delete'
))
{
throw
new
SoapFault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
...
...
interface/web/data.sql
deleted
100644 → 0
View file @
e60d4c7e
This diff is collapsed.
Click to expand it.
interface/web/sites/lib/remote.conf.php
View file @
29e1b0c9
...
...
@@ -6,9 +6,7 @@ $function_list['sites_ftp_user_get,sites_ftp_user_server_get,sites_ftp_user_add,
$function_list
[
'sites_shell_user_get,sites_shell_user_add,sites_shell_user_update,sites_shell_user_delete'
]
=
'Sites Shell-User functions'
;
$function_list
[
'sites_web_domain_get,sites_web_domain_add,sites_web_domain_update,sites_web_domain_delete,sites_web_domain_set_status'
]
=
'Sites Domain functions'
;
$function_list
[
'sites_web_aliasdomain_get,sites_web_aliasdomain_add,sites_web_aliasdomain_update,sites_web_aliasdomain_delete'
]
=
'Sites Aliasdomain functions'
;
$function_list
[
'sites_web_vhost_aliasdomain_get,sites_web_vhost_aliasdomain_add,sites_web_vhost_aliasdomain_update,sites_web_vhost_aliasdomain_delete'
]
=
'Sites Aliasdomain (VHost) functions'
;
$function_list
[
'sites_web_subdomain_get,sites_web_subdomain_add,sites_web_subdomain_update,sites_web_subdomain_delete'
]
=
'Sites Subdomain functions'
;
$function_list
[
'sites_web_vhost_subdomain_get,sites_web_vhost_subdomain_add,sites_web_vhost_subdomain_update,sites_web_vhost_subdomain_delete'
]
=
'Sites Subdomain (VHost) functions'
;
?>
interface/web/themes/default-304/templates/main.tpl.htm
View file @
29e1b0c9
...
...
@@ -58,7 +58,6 @@
<link
rel=
"shortcut icon"
href=
"/themes/default/images/favicon.ico"
/>
<script
type=
"text/javascript"
src=
"js/jquery-1.6.3.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui-1.8.16.custom.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/chosen/chosen.jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/uni-form/uni-form.jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.ispconfigsearch.js"
></script>
...
...
interface/web/themes/default/templates/main.tpl.htm
View file @
29e1b0c9
...
...
@@ -14,7 +14,6 @@
<link
rel=
"shortcut icon"
href=
"/themes/default/images/favicon.ico"
/>
<script
type=
"text/javascript"
src=
"js/jquery-1.6.3.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui-1.8.16.custom.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/chosen/chosen.jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/uni-form/uni-form.jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.ispconfigsearch.js"
></script>
...
...
interface/web/themes/default_64_navimg/templates/main.tpl.htm
View file @
29e1b0c9
...
...
@@ -59,8 +59,7 @@
<link
rel=
"shortcut icon"
href=
"/themes/default_304/images/favicon.ico"
/>
<script
type=
"text/javascript"
src=
"js/jquery-1.6.3.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui-1.8.16.custom.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/chosen/chosen.jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/uni-form/uni-form.jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.ispconfigsearch.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.tipsy.js"
></script>
...
...
interface/web/themes/default_combobox/templates/main.tpl.htm
View file @
29e1b0c9
...
...
@@ -59,8 +59,7 @@
<link
rel=
"shortcut icon"
href=
"/themes/default_304/images/favicon.ico"
/>
<script
type=
"text/javascript"
src=
"js/jquery-1.6.3.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui-1.8.16.custom.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/chosen/chosen.jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/uni-form/uni-form.jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.ispconfigsearch.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.tipsy.js"
></script>
...
...
interface/web/themes/default_no_navimg/templates/main.tpl.htm
View file @
29e1b0c9
...
...
@@ -59,8 +59,7 @@
<link
rel=
"shortcut icon"
href=
"/themes/default_304/images/favicon.ico"
/>
<script
type=
"text/javascript"
src=
"js/jquery-1.6.3.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui-1.8.16.custom.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/chosen/chosen.jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/scrigo.js.php"
></script>
<script
type=
"text/javascript"
src=
"js/uni-form/uni-form.jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.ispconfigsearch.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.tipsy.js"
></script>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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