blob: 20efdcb1107f6344c191b34b9acb9ac9c6928bdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
if (isset($_GET['user'])) {
$config = '';
$res = Database::simpleQuery('SELECT partition_id, size, mount_point, options FROM setting_partition WHERE user = :user',
array('user' => $_GET['user']));
while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
$config .= "\n" . $row['partition_id'] . "," . $row['size'];
if (strlen($row['mount_point']) > 0)
$config .= "," . $row['mount_point'];
if (strlen($row['options']) > 0)
$config .= "," . $row['options'];
}
$config .= "\n";
// vm list url. doesn't really fit anywhere, seems to be a tie between here and dozmod
$configVars["SLX_PARTITION_TABLE"] = $config;
unset($config);
}
|