Reinstall VPS section

feature/node-rewrite
Sven Slootweg 12 years ago
parent ff4e28e626
commit 055f4d8966

@ -36,7 +36,8 @@ try
'^/([0-9]+)/?$' => "module.vps.overview.php",
'^/([0-9]+)/(start)/?$' => "module.vps.overview.php",
'^/([0-9]+)/(stop)/?$' => "module.vps.overview.php",
'^/([0-9]+)/(restart)/?$' => "module.vps.overview.php"
'^/([0-9]+)/(restart)/?$' => "module.vps.overview.php",
'^/([0-9]+)/reinstall/?$' => "module.vps.reinstall.php"
)
);

@ -0,0 +1,34 @@
<?php
/*
* CVM is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_CVM)) { die("Unauthorized."); }
$result = mysql_query_cached("SELECT * FROM templates WHERE `Available` = '1'");
$sTemplateList = array();
foreach($result->data as $row)
{
$sTemplate = new Template($row);
$sTemplateList[] = array(
'id' => $sTemplate->sId,
'name' => $sTemplate->sName,
'description' => $sTemplate->sDescription
);
}
$sPageContents = Templater::InlineRender("vps.reinstall", $locale->strings, array(
'templates' => $sTemplateList
));
?>

@ -0,0 +1,6 @@
<h1>Reinstall your VPS</h1>
<%foreach template in templates>
<h2><%?template[name]></h2>
<p><%?template[description]></p>
<%/foreach>

@ -0,0 +1,6 @@
<?php
$_CVM = true;
require("includes/include.base.php");
$sContainer = new Container(2);
pretty_dump($sContainer->Suspend());
?>
Loading…
Cancel
Save