#!/bin/sh if [ -z "$PHP" ]; then PHP=`which php` fi (exec $PHP -C -q -d output_buffering=1 "$0" "$@") 2>/dev/null if [ "$?" -ne "0" ]; then echo "FAILED: Bad environment variable \$PHP (set to \"$PHP\")" exit 1 fi exit 0 * @copyright 2000-2007 Joshua Eichorn * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @filesource * @link http://www.phpdoc.org * @link http://pear.php.net/PhpDocumentor * @todo CS cleanup - change package to PhpDocumentor */ ob_end_clean(); // make output from autofind php code disapear /** * utility: determine whether we're in PEAR or not * @internal CS Exception- logic here necessitates using an unconditional "include" */ $test = @include "phpDocumentor/find_phpdoc.php"; if ($test == 6) { // find_phpdoc.php returns 6 include "phpDocumentor/phpdoc.inc"; } else { echo "Error: phpDocumentor not found" . PHP_EOL; } ?>