Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
domainepublic
alternc
Commits
c564af24
Commit
c564af24
authored
Mar 20, 2014
by
Alan Garcia
Browse files
Little changes to test PHP analyser
parent
7aa7aa79
Changes
5
Hide whitespace changes
Inline
Side-by-side
CODING_CONVENTION.php
View file @
c564af24
...
...
@@ -60,8 +60,8 @@ class m_mailman {
## when raising an error, use the following syntax ##
$err
->
raise
(
"classname"
,
_
(
"text in english"
));
}
##
at the end of a php-only file, we don't put a ?>
##
}
/*
at the end of a php-only file, we don't put a ?>
*/
?>
...
...
awstats/awstats.cache.php
View file @
c564af24
...
...
@@ -4,6 +4,7 @@
include
(
"/usr/share/alternc/panel/class/config_nochk.php"
);
$db
->
query
(
"SELECT id,hostname FROM aws;"
);
$d
=
array
();
while
(
$db
->
next_record
())
{
$d
[]
=
$db
->
Record
;
}
...
...
awstats/bureau/admin/aws_edit.php
View file @
c564af24
<?php
/*
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2000-2012 by the AlternC Development Team.
https://alternc.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Purpose of file: Edit a statistic set
----------------------------------------------------------------------
*/
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2000-2012 by the AlternC Development Team.
https://alternc.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Purpose of file: Edit a statistic set
----------------------------------------------------------------------
*/
require_once
(
"../class/config.php"
);
$fields
=
array
(
"id"
=>
array
(
"request"
,
"integer"
,
0
),
);
"id"
=>
array
(
"request"
,
"integer"
,
0
),
);
getFields
(
$fields
);
if
(
!
$id
)
{
...
...
@@ -35,15 +35,15 @@ if (!$id) {
$r
=
$aws
->
get_stats_details
(
$id
);
if
(
!
$r
)
{
$error
=
$err
->
errstr
();
}
else
{
$id
=
$r
[
"id"
];
$hostname
=
$r
[
"hostname"
];
$awsusers
=
$r
[
"users"
];
$hostaliases
=
$r
[
"hostaliases"
];
$public
=
$r
[
"public"
];
}
}
$id
=
$r
[
"id"
];
$hostname
=
$r
[
"hostname"
];
$awsusers
=
$r
[
"users"
];
$hostaliases
=
$r
[
"hostaliases"
];
$public
=
$r
[
"public"
];
include
(
"aws_add.php"
);
exit
();
...
...
bureau/admin/ftp_edit.php
View file @
c564af24
...
...
@@ -49,6 +49,7 @@ if (!$id && !$create) {
if
(
!
$id
&&
$create
)
{
//creation
echo
"<h3>"
.
_
(
"Create a FTP account"
)
.
"</h3>"
;
$rr
=
false
;
}
else
{
echo
"<h3>"
.
_
(
"Editing a FTP account"
)
.
"</h3>"
;
$rr
=
$ftp
->
get_ftp_details
(
$id
);
...
...
bureau/admin/ip_main.php
View file @
c564af24
...
...
@@ -148,17 +148,19 @@ $lac = $authip->list_affected();
foreach
(
$list_ip
as
$i
)
{
if
(
checkip
(
$i
[
'ip'
]))
{
if
(
$i
[
'subnet'
]
==
32
)
{
$txt
=
"Address IPv4"
;
$txt
=
_
(
"Address IPv4"
)
;
}
else
{
$txt
=
"Subnet IPv4"
;
$txt
=
_
(
"Subnet IPv4"
)
;
}
}
elseif
(
checkipv6
(
$i
[
'ip'
]))
{
if
(
$i
[
'subnet'
]
==
128
)
{
$txt
=
"Address IPv6"
;
$txt
=
_
(
"Address IPv6"
)
;
}
else
{
$txt
=
"Subnet IPv6"
;
$txt
=
_
(
"Subnet IPv6"
)
;
}
}
}
else
{
$txt
=
_
(
"Error with this IP"
);
}
echo
"<tr class='lst' ><td>
{
$i
[
'infos'
]
}
</td><td>
{
$i
[
'ip_human'
]
}
</td><td>
$txt
</td>"
;
?>
<td><div
class=
"ina edit"
><a
href=
"javascript:edit_ip(
<?php
echo
"'"
.
htmlentities
(
$i
[
'id'
])
.
"','"
.
htmlentities
(
$i
[
'ip_human'
])
.
"','"
.
htmlentities
(
$i
[
'infos'
])
.
"'"
;
?>
);"
>
<?php
__
(
"Edit"
);
?>
</a></div></td>
...
...
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