_("Your account")));
dual_begin(array());
print("
\n");
print("" . _("You have not authenticated yourself to the system yet with your") . " " . _("username") . " " . _("and") . " " . _("password") . ". " .
_("You will not be able to use this section of the website without authenticating yourself first. So, please continue and login using the form on the right hand side.") . "
\n");
dual_middle(array());
show_account_details(array());
dual_end(array());
generic_footer(array());
exit;
}
global $volumes_id;
global $volumes_name;
global $volumes_mountpoint;
global $volumes_vg;
global $volumes_fstype;
$volumes_id = array();
$volumes_name = array();
$volumes_mountpoint = array();
$volumes_vg = array();
$volumes_fstype = array();
function volumes_startelement($parser, $name, $attrs)
{
global $volumes_id, $volumes_name, $volumes_mountpoint, $volumes_vg, $volumes_fstype;
if ($name == "VOLUME")
{
array_push($volumes_id, $attrs["ID"]);
array_push($volumes_name, $attrs["NAME"]);
array_push($volumes_mountpoint, $attrs["MOUNTPOINT"]);
array_push($volumes_vg, $attrs["VG"]);
array_push($volumes_fstype, $attrs["FSTYPE"]);
}
}
function volumes_endelement($parser, $name)
{
}
$volumes_parser = xml_parser_create();
xml_set_element_handler($volumes_parser, "volumes_startelement", "volumes_endelement");
$volumes_fp = fopen("/opt/openfiler/etc/volumes.xml", "r");
while ($volumes_data = fread($volumes_fp, 4096))
xml_parse($volumes_parser, $volumes_data, feof($volumes_fp));
fclose($volumes_fp);
xml_parser_free($volumes_parser);
$snapshots_id = array();
$snapshots_lvname = array();
$snapshots_vgname = array();
$snapshots_shared = array();
$snapshots_rotateid = array();
function snapshots_startelement($parser, $name, $attrs)
{
global $snapshots_id, $snapshots_lvname, $snapshots_vgname, $snapshots_shared, $snapshots_rotateid;
if ($name == "SNAPSHOT")
{
array_push($snapshots_id, $attrs["ID"]);
array_push($snapshots_lvname, $attrs["LVNAME"]);
array_push($snapshots_vgname, $attrs["VGNAME"]);
array_push($snapshots_shared, $attrs["SHARED"]);
array_push($snapshots_rotateid, $attrs["ROTATEID"]);
}
}
function snapshots_endelement($parser, $name)
{
}
$snapshots_parser = xml_parser_create();
xml_set_element_handler($snapshots_parser, "snapshots_startelement", "snapshots_endelement");
$snapshots_fp = fopen("/opt/openfiler/etc/snapshots.xml", "r");
while ($snapshots_data = fread($snapshots_fp, 4096))
xml_parse($snapshots_parser, $snapshots_data, feof($snapshots_fp));
fclose($snapshots_fp);
xml_parser_free($snapshots_parser);
generic_header(array("title" => _("Administration Section")));
single_begin(array());
print("" . _("Home") . " / " . _("Administration Section") . "
\n");
$curcolor = $GLOBALS["color_table_row2"];
$imgid = $GLOBALS["color_table_row2_colstr"];
function getcolor()
{
global $curcolor, $imgid;
if ($curcolor == $GLOBALS["color_table_row1"])
{
$curcolor = $GLOBALS["color_table_row2"];
$imgid = $GLOBALS["color_table_row2_colstr"];
}
else
{
$curcolor = $GLOBALS["color_table_row1"];
$imgid = $GLOBALS["color_table_row1_colstr"];
}
return $curcolor;
}
?>
Welcome Administrator. The following are various system information and preferences, arranged
into tabs. Please click on a tab to open up that category.
\n");
else if ($dir_type == "leaf")
print("\t \n");
else if ($dir_type == "closed")
print("\t \n");
?>
|
" . htmlentities($mountpoint . $file . "/") . ")") : ""); ?> |
|
" . $volumes_mountpoint[$volume_index] . ")") : ""); ?>
|
\n");
?>
|
" . htmlentities("/mnt/snapshots/" . $snapshots_vgname[$i] . "/" . $snapshots_lvname[$i] . "/" . $snapshots_id[$i] . "/") . ")") : ""); ?> |
There are no existing volume groups. Please create some volume groups.");
else for ($i = 0; $i < count($vgds); $i++)
{
$vginfo = explode(":", trim($vgds[$i], " "));
if ($vginfo[11] <= 0)
break;
?>
|
/mnt/" . $vginfo[0] . "/)") : ""); ?>
|
|