I've been documenting a set of API compliant PN modules in the phpDocumentor style as I've developed them, but the generated documentation doesn't look too good because of the way arguments are passed to functions in Postnuke as one associative array.
Basicly I have something like:
Code
/**
* @param string A long string
* @param array An array
* @return array
*/
function MyModule_user_func($args) {
// ...
}
* @param string A long string
* @param array An array
* @return array
*/
function MyModule_user_func($args) {
// ...
}
And the generated documentation looks like:
Code
I think the wrong arguments order and naming is quite misleading - did anyone experience this problem, and maybe even fixed/hacked it?
Thanks in advance!
Best regards, Jonas Delfs
edited by: jonasdelfs, Aug 15, 2006 - 05:07 PM
