mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
31 lines
612 B
PHP
31 lines
612 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Ioncube Performance Suite management
|
||
|
*/
|
||
|
class IPS extends Controller {
|
||
|
function index() {
|
||
|
echo "<h1>Ioncube Performance Suite Management</h1>";
|
||
|
|
||
|
if(function_exists('ips_version')) {
|
||
|
echo "<p>Running IPS version " . ips_version() . "</p>";
|
||
|
|
||
|
if($stats = ips_get_stats()) {
|
||
|
echo "<ul>";
|
||
|
foreach($stats as $statName => $statValue) {
|
||
|
echo "<li><b>$statName:</b> $statValue</li>";
|
||
|
}
|
||
|
echo "</ul>";
|
||
|
} else {
|
||
|
echo "<p style=\"color: orange\">IPS installed but disabled</p>";
|
||
|
}
|
||
|
|
||
|
} else {
|
||
|
echo "<p style=\"color: red\">Not running IPS</p>";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
?>
|