phpdocumentor is Documentation Generator for PHP written in PHP.

learn more… | top users | synonyms

2
votes
2answers
560 views

How to generate documentation from css file?

I reference to CSSDoc specification and want to generate comment documentation from css file. The first thought used phpdocumentor tool. When execute phpdoc -o HTML:frames:default -f main.css -t docs ...
1
vote
2answers
620 views

Integrating Images in a Docbook Manual in conjunction with phpDocumentor

is there a possibility to include images into a docbook manual compiled by phpDocumentor? I tried both: <mediaobject> <imageobject> <imagedata fileref="payment_flowchart.png" ...
0
votes
2answers
457 views

phpDocumentor - “Is phpdoc in either the path or include_path in your php.ini file?”

I'm trying to run phpDocumentor and am getting this error... I've searched extensively on Google and cannot find a solution that works, unfortunately I couldn't install via PEAR so I've had to ...
0
votes
2answers
256 views

phpDocumentor Not working

Im trying to get started using phpDocumentor. My problem is its only generating a img,css,js folders and a structure.xml file. I have currently created a folder in c:/xampp/htdocs called phpTest ...
0
votes
2answers
336 views

PHP autodoc(Inheritance) autodocumentor tags

I am using phpautodocumentor, I am writing a class which extends a class which is in completely different folder, How can I write in comments that I am extending that particular class. Because ...
1
vote
1answer
65 views

PHPDOC Examples Without Line Numbers

According to PHPDocumentor's documentation, to show an example it would be like this: @example [location] [<start-line> [<number-of-lines>] ] [<description>] This seems like a ...
1
vote
1answer
94 views

phpDocumentor 2.0 Page-level DocBlock - Where is it?

I have a set of classes, each class is in its own file. I've added appropriate DocBlocks so that I get no errors or warnings when I build the documentation. Here is a very simplified example: ...
1
vote
1answer
79 views

Phpdocumentor and Slim routers documentation

I use phpdocumentor for generating of documentation for my project. It generates good documentation for my functions like: /** * Hash generator * * Long description * ...
1
vote
1answer
287 views

phpDocumentor2: XSLT not found

if i call the phpDocumentor to generate a documentation all works fine until the XSLT-Transformation begins. Then i get following message: [phpDocumentor\Plugin\Core\Exception] The XSL writer was ...
0
votes
1answer
18 views

Installing phpdocumentor on Uniserver

When I use the PEAR web interface provided by Uniserver 8.8.1 to install phpdocumentor, I get the usual "Downloading..." and then the download finished message. Then, nothing happens. What do I need ...
0
votes
1answer
85 views

Where should I install phpDocumentor 2?

I want to manually install phpDocumentor 2 on Unix using the installer. I have limited knowledge of the command line, but I do have root access. The instructions say to download the installer to the ...
0
votes
1answer
33 views

phpundercontrol doesn't find any tests

PhpUndercontrol doesn't finde any test, inside my projects (inside cruisecontrol/projects) I have this: /www/tests/DomainTEst/DomainTest.php (for instance I want to run for now only one test) ...
0
votes
1answer
131 views

PHPDoc wiki template

I recently upgraded to phpdoc 2 and want to create a solution for outputting my api to wiki markup, instead of html or pdf. In /usr/share/php5/data/PhpDocumentor/Converters, I see the CHM, HTML, PDF, ...
0
votes
1answer
25 views

Generating document for a huge PHP file

I have a huge PHP File ( approx 2 MB). As its a third party file so can't change it. Now I want to generate documentation for it using automatic documentation generators. I tried Doxygen, Apigen and ...
0
votes
1answer
47 views

PHPDOC2 OUTPUT NOT PRODUCE

After installed the phpdoc. I have run the phpdoc run -h it gave the output. But when run the phpdoc run -d . -t ouput not produce any output.Any changes need to do please suggest me. Thanks ...
0
votes
1answer
89 views

Is there a documentor available for HTML/CSS?

Like PHPDocumentor is to PHP and Doxygen is to JAVA, C++, C#, Fortran, etc.,
0
votes
1answer
98 views

Commenting if statements for phpdocumentor2

I am in the process of documenting a PHP project using PHPDocumentor2. Ironically, PHPDoc's documentation isn't overly detailed. I fully understand how to comment files, classes, functions and ...
0
votes
1answer
56 views

phpDocumentor applied to some functions

Is there any way you can make phpDocumentor generate docs only for some specific functions (even if all of them have the right docblock) ? Maybe there is a special tag for this ? Update: I can't use ...
1
vote
0answers
66 views

PHPDoc Create/Modified Date/Timestamp

What (if any) tag can be used to specify a create and/or last modified date for PHPDocumentor? For example: @created 2013-01-01 @author John Doe @updated 2013-01-06 This is primarily for ...
1
vote
0answers
88 views

Why is phpDocumentator not liking my @param?

Hi have a simple function that has a param of object Person. When I run the phpDocumentator (phpdoc -d . -t /path/to/www/docs) and see the Errors report I get: The type hint of the argument is ...
1
vote
0answers
62 views

phpDocumentor directory does not exist

Im trying to run phpDocumentor on a new server with the following command: phpdoc -d /var/www/vhosts/mysite.com/httpdocs/source -t /var/www/vhosts/mysite.com/httpdocs/docs But it always says: ...
0
votes
0answers
6 views

Link to property in PHPDocumentor

Im trying to generate a link from a property to another, and I've tried everything and failed. /** * XXXXX * * Usually, it's used preceded of {@link SwHelper::SW_BASE_URL}. */ I've ...
0
votes
0answers
15 views

phpDocumentor parsing only files which have been updated

I am using phpDocumentor to generate Docs for selected libs, and doc are added to svn( good or bad ?). Each time I run phpdoc command it parses all files and updates all Doc files and only adds ...
0
votes
0answers
13 views

Accessing custom variables in a template from a phpdoc 2.0 configuration XML file

In phpdoc 2.0, is it possible to add additional custom tags to the phpdoc.xml file in order to make the values they contain available to the template's .xsl files? For example, the xml config file can ...
0
votes
0answers
19 views

phpdoc not parsing constant description

I've been trying to document my configuration file, following the phpdocumentor documention I started with a simplified config file which looks like this: /** * Configuration / Settings file * * ...
0
votes
0answers
18 views

use netbeans phpdocumentor array

use netbeans code assist..... $file_list = array(); /** * this is db host */ $file_list['db_host'] = 'localhost'; /** * this is db id */ $file_list['db_id'] = 'root'; $file_list[] -"netbeans ...
0
votes
0answers
69 views

PhpDocumentor2 output in HTML

One big question HOW to generate output in HTML using PhpDocumentor2. Bcs it generates AST with .xml file but when i try to type command with: -o HTML:frames:earthli I get [RunTimeException] that ...
0
votes
0answers
79 views

phpdocumentor 2 with zend phtml files not working

I have a zend project where I want to use phpDocumentor 2 for documentation. My problem are the phtml files. 1.) I got the error of "No page-level DocBlock was found" although I added it at the ...
0
votes
0answers
80 views

PHPDoc 2 comments: file & namespace

it is possible that the files section (using file level doc block) was removed in V2? I am happy about it because I prefer single classes in each file and only need the class docblock. I was just ...
0
votes
0answers
28 views

Is there any phpDocumentor 2 printable output?

Is there any quick way to output printable documentation using phpDocumentor 2? Option -o doesn't work...
0
votes
0answers
203 views

Custom templates with phpDocumentor 2

I've been trying to get a custom template to work with PHPDocumentor (2) without much luck. The documentation on their site is incomplete and I'm kind of stumped. What I've done is downloaded a copy ...
0
votes
0answers
35 views

Files in PhpDocumentor

PhpDocumentor creates the following documentation: "Namespaces", "Packages", "Charts" and "Reports". How do I set it up to also display a list of my files?
0
votes
0answers
142 views

PHPDocumentor: cannot open php.doc in a Zend setup

myI have been trying to install phpDocumentor on a Windows vista system, but keep getting the message "could not open input file: \phpdoc.php" when I enter phpdoc.bat or 'phpdoc' command in the ...
0
votes
0answers
52 views

phpDocumenter and abstract methods

I'm using phpDocumentor phpDocumentor version 2.0.0a10` and have several abstract classes that I am documenting. The documentation seems to include those abstract classes but not methods that ...
0
votes
0answers
139 views

phpdoc anonymous function

Ihave some anonymous function calls in my project. How to use phpdoc for anonymous functions? Example spl_autoload_register(function($className) { //code }); Thanks.
0
votes
0answers
88 views

phpdocumentor web interface output Zend error

I just installed the PhpDocumentor via pear and it seems to be working fine, however i am confused how do i generate the documentation to the html out put, because when i run the phpdoc -o ...