mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a79ab917c7
API CHANGE: Added SSCli class to help with outputting coloured text on the command line git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63637 467b73ca-7a2a-4603-9d3b-597d59a354a9
71 lines
1.7 KiB
PHP
71 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* A basic HTML wrapper for stylish rendering of a developement info view.
|
|
* Used to output error messages, and test results.
|
|
*
|
|
* @package sapphire
|
|
* @subpackage dev
|
|
*
|
|
* @todo Perhaps DebugView should be an interface / ABC, implemented by HTMLDebugView and CliDebugView?
|
|
*/
|
|
|
|
class CliDebugView extends DebugView {
|
|
|
|
/**
|
|
* Render HTML header for development views
|
|
*/
|
|
public function writeHeader($httpRequest = null) {
|
|
}
|
|
|
|
/**
|
|
* Render HTML footer for development views
|
|
*/
|
|
public function writeFooter() {
|
|
}
|
|
|
|
/**
|
|
* Write information about the error to the screen
|
|
*/
|
|
public function writeError($httpRequest, $errno, $errstr, $errfile, $errline, $errcontext) {
|
|
$errorType = self::$error_types[$errno];
|
|
echo SSCli::text("ERROR [" . $errorType['title'] . "]: $errstr\nIN $httpRequest\n", "red", null, true);
|
|
echo SSCli::text("Line $errline in $errfile\n\n", "red");
|
|
}
|
|
|
|
/**
|
|
* Write a fragment of the a source file
|
|
* @param $lines An array of file lines; the keys should be the original line numbers
|
|
*/
|
|
function writeSourceFragment($lines, $errline) {
|
|
echo "Source\n======\n";
|
|
foreach($lines as $offset => $line) {
|
|
echo ($offset == $errline) ? "* " : " ";
|
|
echo str_pad("$offset:",5);
|
|
echo wordwrap($line, 100, "\n ");
|
|
}
|
|
echo "\n";
|
|
}
|
|
|
|
/**
|
|
* Write a backtrace
|
|
*/
|
|
function writeTrace() {
|
|
Debug::backtrace();
|
|
}
|
|
|
|
/**
|
|
* Render the information header for the view
|
|
*
|
|
* @param string $title
|
|
* @param string $title
|
|
*/
|
|
public function writeInfo($title, $subtitle, $description=false) {
|
|
echo wordwrap(strtoupper($title),100) . "\n";
|
|
echo wordwrap($subtitle,100) . "\n";
|
|
echo str_repeat('-',min(100,max(strlen($title),strlen($subtitle)))) . "\n";
|
|
echo wordwrap($description,100) . "\n\n";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|