forked from extern/egroupware
232252475f
Patch is mostly created by script in egroupware/doc/fix_depricated.php in separate commit. I do NOT advice to apply this patch to a production system (it's commited to trunk!), as the automatic modified regular expressions have a good change to break something ...
46 lines
789 B
PHP
Executable File
46 lines
789 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
*
|
|
* Tests default plugins
|
|
*
|
|
* @version $Id$
|
|
*
|
|
*/
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
require_once 'Savant2.php';
|
|
|
|
$savant = new Savant2();
|
|
|
|
require_once 'PEAR.php';
|
|
PEAR::setErrorHandling(PEAR_ERROR_PRINT);
|
|
|
|
echo "<h1>PEAR_Error</h1>\n";
|
|
$savant->setError('pear');
|
|
$result = $savant->loadPlugin('nosuchthing');
|
|
echo "<pre>\n";
|
|
print_r($result);
|
|
echo "</pre>\n\n";
|
|
|
|
echo "<h1>PEAR_ErrorStack</h1>\n";
|
|
$savant->setError('stack');
|
|
$result = $savant->loadPlugin('nosuchthing');
|
|
echo "<pre>\n";
|
|
print_r($result);
|
|
echo "</pre>\n\n";
|
|
|
|
echo "<pre>\n";
|
|
print_r(print_r($GLOBALS['_PEAR_ERRORSTACK_SINGLETON']));
|
|
echo "</pre>\n\n";
|
|
|
|
echo "<h1>Exception</h1>\n";
|
|
$savant->setError('exception');
|
|
$result = $savant->loadPlugin('nosuchthing');
|
|
echo "<pre>\n";
|
|
print_r($result);
|
|
echo "</pre>\n\n";
|
|
|
|
|
|
?>
|