Little changes to test PHP analyser
This commit is contained in:
parent
7aa7aa7907
commit
c564af24db
|
@ -60,8 +60,8 @@ class m_mailman {
|
||||||
## when raising an error, use the following syntax ##
|
## when raising an error, use the following syntax ##
|
||||||
$err->raise("classname",_("text in english"));
|
$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 ?> */
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
include("/usr/share/alternc/panel/class/config_nochk.php");
|
include("/usr/share/alternc/panel/class/config_nochk.php");
|
||||||
|
|
||||||
$db->query("SELECT id,hostname FROM aws;");
|
$db->query("SELECT id,hostname FROM aws;");
|
||||||
|
$d=array();
|
||||||
while ($db->next_record()) {
|
while ($db->next_record()) {
|
||||||
$d[]=$db->Record;
|
$d[]=$db->Record;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,12 +21,12 @@
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
Purpose of file: Edit a statistic set
|
Purpose of file: Edit a statistic set
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
require_once("../class/config.php");
|
require_once("../class/config.php");
|
||||||
|
|
||||||
$fields = array (
|
$fields = array (
|
||||||
"id" => array ("request", "integer", 0),
|
"id" => array ("request", "integer", 0),
|
||||||
);
|
);
|
||||||
getFields($fields);
|
getFields($fields);
|
||||||
|
|
||||||
if (!$id) {
|
if (!$id) {
|
||||||
|
@ -35,15 +35,15 @@ if (!$id) {
|
||||||
$r=$aws->get_stats_details($id);
|
$r=$aws->get_stats_details($id);
|
||||||
if (!$r) {
|
if (!$r) {
|
||||||
$error=$err->errstr();
|
$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");
|
include("aws_add.php");
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@ if (!$id && !$create) {
|
||||||
|
|
||||||
if (!$id && $create) { //creation
|
if (!$id && $create) { //creation
|
||||||
echo "<h3>"._("Create a FTP account")."</h3>";
|
echo "<h3>"._("Create a FTP account")."</h3>";
|
||||||
|
$rr=false;
|
||||||
} else {
|
} else {
|
||||||
echo "<h3>"._("Editing a FTP account")."</h3>";
|
echo "<h3>"._("Editing a FTP account")."</h3>";
|
||||||
$rr=$ftp->get_ftp_details($id);
|
$rr=$ftp->get_ftp_details($id);
|
||||||
|
|
|
@ -148,16 +148,18 @@ $lac = $authip->list_affected();
|
||||||
foreach($list_ip as $i) {
|
foreach($list_ip as $i) {
|
||||||
if (checkip($i['ip'])) {
|
if (checkip($i['ip'])) {
|
||||||
if ($i['subnet']==32) {
|
if ($i['subnet']==32) {
|
||||||
$txt="Address IPv4";
|
$txt=_("Address IPv4");
|
||||||
} else {
|
} else {
|
||||||
$txt="Subnet IPv4";
|
$txt=_("Subnet IPv4");
|
||||||
}
|
}
|
||||||
} elseif (checkipv6($i['ip'])) {
|
} elseif (checkipv6($i['ip'])) {
|
||||||
if ($i['subnet']==128) {
|
if ($i['subnet']==128) {
|
||||||
$txt="Address IPv6";
|
$txt=_("Address IPv6");
|
||||||
} else {
|
} 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>";
|
echo "<tr class='lst' ><td>{$i['infos']}</td><td>{$i['ip_human']}</td><td>$txt</td>";
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue