Source for file phpdoc.inc

Documentation is available at phpdoc.inc

  1. <?php
  2. /**
  3.  * startup file
  4.  * 
  5.  * phpDocumentor :: automatic documentation generator
  6.  * 
  7.  * PHP versions 4 and 5
  8.  *
  9.  * Copyright (c) 2000-2007 Joshua Eichorn, Gregory Beaver
  10.  * 
  11.  * LICENSE:
  12.  * 
  13.  * This library is free software; you can redistribute it
  14.  * and/or modify it under the terms of the GNU Lesser General
  15.  * Public License as published by the Free Software Foundation;
  16.  * either version 2.1 of the License, or (at your option) any
  17.  * later version.
  18.  * 
  19.  * This library is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22.  * Lesser General Public License for more details.
  23.  * 
  24.  * You should have received a copy of the GNU Lesser General Public
  25.  * License along with this library; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  27.  *
  28.  * @category  ToolsAndUtilities
  29.  * @package   phpDocumentor
  30.  * @author    Joshua Eichorn <[email protected]>
  31.  * @author    Gregory Beaver <[email protected]>
  32.  * @copyright 2000-2007 Joshua Eichorn, Gregory Beaver
  33.  * @license   http://www.opensource.org/licenses/lgpl-license.php LGPL
  34.  * @version   CVS: $Id: phpdoc.inc 243933 2007-10-10 01:18:25Z ashnazg $
  35.  * @link      http://www.phpdoc.org
  36.  * @link      http://pear.php.net/PhpDocumentor
  37.  * @since     0.1
  38.  * @filesource
  39.  * @todo      CS cleanup - change package to PhpDocumentor
  40.  */
  41.  
  42.  
  43. // set up include path so we can find all files, no matter what
  44. $a explode('/'str_replace('\\''/'dirname(realpath(__FILE__))));
  45. $GLOBALS['_phpDocumentor_install_dir'join('/'$a);
  46. // add my directory to the include path, and make it first, should fix any errors
  47. if (substr(PHP_OS03== 'WIN')
  48. ini_set('include_path'
  49.     $GLOBALS['_phpDocumentor_install_dir'].';'.ini_get('include_path'));
  50. else
  51. ini_set('include_path'
  52.     $GLOBALS['_phpDocumentor_install_dir'].':'.ini_get('include_path'));
  53.  
  54. /**
  55.  * All command-line handling from previous version has moved to here
  56.  *
  57.  * Many settings also moved to phpDocumentor.ini
  58.  */
  59. require_once "phpDocumentor/Setup.inc.php";
  60.  
  61. $phpdoc new phpDocumentor_setup;
  62. $phpdoc->readCommandLineSettings();
  63. $phpdoc->setupConverters();
  64. $phpdoc->createDocs();
  65. ?>

Documentation generated on Mon, 05 Dec 2011 21:01:06 -0600 by phpDocumentor 1.4.4