phpDocumentor
[ class tree: phpDocumentor ] [ index: phpDocumentor ] [ all elements ]

Source for file builder.php

Documentation is available at builder.php

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <?php
  3. /**
  4.  * phpDocumentor :: docBuilder Web Interface
  5.  * 
  6.  * Advanced Web Interface to phpDocumentor
  7.  *
  8.  * PHP versions 4 and 5
  9.  *
  10.  * Copyright (c) 2003-2006 Andrew Eddie, Greg Beaver
  11.  * 
  12.  * LICENSE:
  13.  * 
  14.  * This library is free software; you can redistribute it
  15.  * and/or modify it under the terms of the GNU Lesser General
  16.  * Public License as published by the Free Software Foundation;
  17.  * either version 2.1 of the License, or (at your option) any
  18.  * later version.
  19.  * 
  20.  * This library is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  23.  * Lesser General Public License for more details.
  24.  * 
  25.  * You should have received a copy of the GNU Lesser General Public
  26.  * License along with this library; if not, write to the Free Software
  27.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  28.  *
  29.  * @category   ToolsAndUtilities
  30.  * @package    phpDocumentor
  31.  * @author     Andrew Eddie
  32.  * @author     Greg Beaver <cellog@php.net>
  33.  * @copyright  2003-2006 Andrew Eddie, Greg Beaver
  34.  * @license    http://www.opensource.org/licenses/lgpl-license.php LGPL
  35.  * @version    CVS: $Id$
  36.  * @filesource
  37.  * @see phpdoc.php
  38.  */
  39.  
  40. if (!function_exists('version_compare'))
  41. {
  42.     print "phpDocumentor requires PHP version 4.1.0 or greater to function";
  43.     exit;
  44. }
  45.  
  46.  
  47. if ('@DATA-DIR@' != '@'.'DATA-DIR@'{
  48.     // set up include path so we can find all files, no matter what
  49.     $root_dir 'PhpDocumentor';
  50.     /**
  51.     * common file information
  52.     */
  53.     include_once("$root_dir/phpDocumentor/common.inc.php");
  54.     $GLOBALS['_phpDocumentor_install_dir''PhpDocumentor';
  55.     // find the .ini directory by parsing phpDocumentor.ini and extracting _phpDocumentor_options[userdir]
  56.     $ini phpDocumentor_parse_ini_file('@DATA-DIR@/PhpDocumentor/phpDocumentor.ini'true);
  57.     if (isset($ini['_phpDocumentor_options']['userdir']))
  58.     {
  59.         $configdir $ini['_phpDocumentor_options']['userdir'];
  60.     else {
  61.         $configdir '@DATA-DIR@/user';
  62.     }
  63. else {
  64.     // set up include path so we can find all files, no matter what
  65.     $GLOBALS['_phpDocumentor_install_dir'dirname(dirname(realpath(__FILE__)));
  66.     $root_dir dirname(dirname(__FILE__));
  67.     /**
  68.     * common file information
  69.     */
  70.     include_once("$root_dir/phpDocumentor/common.inc.php");
  71.     // add my directory to the include path, and make it first, should fix any errors
  72.     if (substr(PHP_OS03== 'WIN')
  73.     {
  74.         ini_set('include_path',$GLOBALS['_phpDocumentor_install_dir'].';'.ini_get('include_path'));
  75.     else {
  76.         ini_set('include_path',$GLOBALS['_phpDocumentor_install_dir'].':'.ini_get('include_path'));
  77.     }
  78.     // find the .ini directory by parsing phpDocumentor.ini and extracting _phpDocumentor_options[userdir]
  79.     $ini phpDocumentor_parse_ini_file($_phpDocumentor_install_dir PATH_DELIMITER . 'phpDocumentor.ini'true);
  80.     if (isset($ini['_phpDocumentor_options']['userdir']))
  81.     {
  82.         $configdir $ini['_phpDocumentor_options']['userdir'];
  83.     else {
  84.         $configdir $_phpDocumentor_install_dir '/user';
  85.     }
  86. }
  87.  
  88.  
  89.  
  90. // allow the user to change this at runtime
  91. if (!empty($_REQUEST['altuserdir'])) $configdir $_REQUEST['altuserdir'];
  92. ?>
  93. <html>
  94. <head>
  95.     <title>
  96.         output: docbuilder - phpDocumentor v<?php print PHPDOCUMENTOR_VER?> doc generation information
  97.     </title>
  98.     <style type="text/css">
  99.         body, td, th {
  100.             font-family: verdana,sans-serif;
  101.             font-size: 8pt;
  102.         }
  103.     </style>
  104.  
  105. </head>
  106. <body bgcolor="#e0e0e0" text="#000000" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
  107.  
  108. <?php
  109. // Find out if we are submitting and if we are, send it
  110. // This code originally by Joshua Eichorn on phpdoc.php
  111. //
  112. if (isset($_GET['dataform']&& empty($_REQUEST['altuserdir'])) {
  113.     foreach ($_GET as $k=>$v{
  114.         if (strpos$k'setting_' === 0{
  115.             $_GET['setting'][substr$k)$v;
  116.         }
  117.     }
  118.  
  119.     echo "<strong>Parsing Files ...</strong>";
  120.     flush();
  121.     echo "<pre>\n";
  122.     /** phpdoc.inc */
  123.     include("$root_dir/phpDocumentor/phpdoc.inc");
  124.     echo "</pre>\n";
  125.     echo "<h1>Operation Completed!!</h1>";
  126. else {
  127.     echo "whoops!";
  128. }
  129. ?>

Documentation generated on Mon, 11 Mar 2019 15:50:08 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.