git-svn-id: file:///svn-source/pmgr/branches/pre_0.1_work_20090819@809 97e9348a-65ac-dc4b-aefc-98561f571b83
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
|
|
class UtilController extends AppController {
|
|
|
|
var $uses = array();
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: reset_data
|
|
* - Development function. TO BE DELETED
|
|
*/
|
|
|
|
function reset_data() {
|
|
$this->layout = null;
|
|
$this->autoLayout = false;
|
|
$this->autoRender = false;
|
|
Configure::write('debug', '0');
|
|
$script = $_SERVER['DOCUMENT_ROOT'] . '/pmgr/build.cmd';
|
|
echo "<P>" . date('r') . "\n";
|
|
//echo "<P>Script: $script" . "\n";
|
|
$handle = popen($script . ' 2>&1', 'r');
|
|
//echo "<P>Handle: $handle; " . gettype($handle) . "\n";
|
|
echo "<P><PRE>\n";
|
|
while (($read = fread($handle, 2096))) {
|
|
echo $read;
|
|
}
|
|
echo "</PRE>\n";
|
|
pclose($handle);
|
|
}
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: rebuild_sandbox
|
|
*/
|
|
|
|
function rebuild_sandbox() {
|
|
$this->layout = null;
|
|
$this->autoLayout = false;
|
|
$this->autoRender = false;
|
|
Configure::write('debug', '2');
|
|
$script = preg_replace('%/webroot/index.php%',
|
|
'/build_sandbox.cmd',
|
|
$_SERVER['SCRIPT_FILENAME']);
|
|
echo "<P>" . date('r') . "\n";
|
|
echo "<P>Script: $script" . "\n";
|
|
$handle = popen($script . ' 2>&1', 'r');
|
|
//echo "<P>Handle: $handle; " . gettype($handle) . "\n";
|
|
echo "<P><PRE>\n";
|
|
while (($read = fread($handle, 2096))) {
|
|
echo $read;
|
|
}
|
|
echo "</PRE>\n";
|
|
pclose($handle);
|
|
}
|
|
|
|
|
|
|
|
}
|