git-svn-id: file:///svn-source/pmgr/branches/v0.3_work@1030 97e9348a-65ac-dc4b-aefc-98561f571b83
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
class UtilController extends AppController {
|
|
|
|
var $uses = array();
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: rebuild_box
|
|
*/
|
|
|
|
function rebuild_box($type) {
|
|
$this->layout = null;
|
|
$this->autoLayout = false;
|
|
$this->autoRender = false;
|
|
Configure::write('debug', '0');
|
|
|
|
$usrpass = '--user=perki2_pmgruser --password=pmgrauth';
|
|
$boxdb = 'perki2_pmgr_' . $type;
|
|
|
|
$handle = popen("mysqldump $usrpass --opt perki2_pmgr" .
|
|
" | mysql $usrpass --database=$boxdb", 'r');
|
|
while (($read = fread($handle, 2096))) {
|
|
// Do nothing
|
|
}
|
|
pclose($handle);
|
|
|
|
$url = $_SERVER['HTTP_REFERER'];
|
|
if (empty($url) || $url == 'undefined')
|
|
$url = "/$type";
|
|
|
|
$this->redirect($url);
|
|
}
|
|
|
|
function rebuild_sandbox() { $this->rebuild_box('sand'); }
|
|
function rebuild_devbox() { $this->rebuild_box('dev'); }
|
|
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: logmsg
|
|
* - action to allow posting log message data
|
|
*/
|
|
|
|
function logmsg() {
|
|
}
|
|
|
|
}
|