PHP Documentor - creating or modifying Templates

i am using PHP Documentor for the first time.

I need to know how i can change the html generated by the parser in a way that i can integrate this documentation within my company's framework.

Has anyone ever did this?

Thanks

Upvotes: 1

Views: 794

Answers (2)

mfonda
mfonda

Reputation: 8003

I would recommend to check out DocBlox instead. It is a modern version of PHPDocumentor with support for PHP 5.3 features. Much faster and more memory efficient.

Building your own template is easy -- see docs.

Upvotes: 4

George Cummins
George Cummins

Reputation: 28936

According to the PHP Documentor feature list, output can be supplied in the following formats: HTML, PDF (directly), CHM (with windows help compiler), XML DocBook.

Additionally, all output can be customized with Smarty templates.

Please see the documentation for specific instructions.

Upvotes: 1

Related Questions