documentation.php 655 B

12345678910111213141516
  1. <?php
  2. //need to manually include for the function 'get_declared_classes()'
  3. include_once("lib/soap/IPPhpdoc.class.php");
  4. include_once("lib/soap/IPReflectionClass.class.php");
  5. include_once("lib/soap/IPReflectionCommentParser.class.php");
  6. include_once("lib/soap/IPReflectionMethod.class.php");
  7. include_once("lib/soap/IPReflectionProperty.class.php");
  8. include_once("lib/soap/IPXMLSchema.class.php");
  9. include_once("lib/soap/WSDLStruct.class.php");
  10. include_once("lib/soap/WSHelper.class.php");
  11. include_once("lib/IPXSLTemplate.class.php");
  12. $phpdoc=new IPPhpdoc();
  13. if(isset($_GET['class'])) $phpdoc->setClass($_GET['class']);
  14. echo $phpdoc->getDocumentation();
  15. ?>