Private Method Details |
renderConstants |
private void renderConstants( )
|
|
Adds a summary and a detailed list of all constants to the template.
|
Returns |
void |
See Also |
renderConstantSummary(), renderConstantDetail() |
|
renderConstantSummary |
private void renderConstantSummary( )
|
|
Adds a summary of all constants to the template.
The function assumes that there is a block called "constantssummary" andwithing this block a bock called "constantssummary_loop" in the template.
|
Returns |
void |
See Also |
renderConstantDetail() |
|
renderConstantDetail |
private void renderConstantDetail( )
|
|
Adds a detailed list of all constants to the template.
The function assumes that there is a block named "constantdetails" andwithing it another block named "constantdetails_loop".
|
Returns |
void |
See Also |
renderConstantSummary() |
|
renderUses |
private void renderUses( )
|
|
Adds a summary and a detailed list of included files to the template.
|
Returns |
void |
See Also |
renderUsesSummary(), renderUsesDetail() |
|
renderUsesDetail |
private void renderUsesDetail( )
|
|
Adds a detailed list of all included files to the template.
The function assumes that there is a block names "usesdetail" and within the blocka block names "usesdetail_loop" in the template.
|
Returns |
void |
See Also |
renderUsesSummary() |
|
renderUsesSummary |
private void renderUsesSummary( )
|
|
Adds a summary of all included files to the template.
The function assumes that there is a block names "usessummary" and withinthe block another block names "usessummary_loop" in the template.
|
Returns |
void |
See Also |
renderUsesDetail() |
|
renderFunctions |
private void renderFunctions( )
|
|
Adds a summary and a detailed list of all functions to the template.
|
Returns |
void |
See Also |
renderFunctionSummary(), renderFunctionDetail(), $functions |
|
renderFunctionSummary |
private void renderFunctionSummary( )
|
|
Adds a function summary to the template.
The function assumes that there is ablock names "functionsummary" andwithin it a block names "functionsummary_loop" in the template.
|
Returns |
void |
See Also |
renderFunctionDetail(), renderFunctions(), $functions, $accessModifiers |
|
renderFunctionDetail |
private void renderFunctionDetail( )
|
|
Adds a detailed list of functions to the template.
The function assumes that there is a block named "functiondetails" andwithin it a bloc "functiondetails_loop" in the template.
|
Returns |
void |
See Also |
renderFunctions(), renderFunctionSummary(), $functions, $accessModifiers |
|
renderParameterDetail |
private void renderParameterDetail( array $parameter )
|
|
Renders a detailed list of function parameters.
The function assumes that there is a block named "functiondetails_parameter" inthe template and within it a block named "functiondetails_parameter_loop".
|
Parameter |
|
|
Returns |
void |
|
getParameter |
private string getParameter( array $parameter )
|
|
Converts the XML parameter array into formatted string.
|
Parameter |
|
array |
$parameter |
|
|
parameter array |
|
Returns |
string Formatted parameter string |
|
renderSee |
private void renderSee( array $references, [ string $prefix ] )
|
|
Renders a block with references to other source elements.
|
Parameter |
|
array |
$references |
|
|
references array |
|
|
string |
$prefix |
= >>""<< |
|
template blockname prefix |
|
Returns |
void |
|
renderAuthors |
private void renderAuthors( array $authors, [ string $prefix ] )
|
|
Renders an author list.
|
Parameter |
|
array |
$authors |
|
|
author array |
|
|
string |
$prefix |
= >>""<< |
|
template blockname prefix |
|
Returns |
void |
|
renderLinks |
private void renderLinks( array $links, [ string $prefix ] )
|
|
Renders a list of external links.
|
Parameter |
|
|
|
string |
$prefix |
= >>""<< |
|
template blockname prefix |
|
Returns |
void |
|
renderThrows |
private void renderThrows( array $throws, [ string $prefix ] )
|
|
Renders a list of exceptions.
|
Parameter |
|
|
|
string |
$prefix |
= >>""<< |
|
template blockname prefix |
|
Returns |
void |
|
renderGlobals |
private void renderGlobals( array $globals, [ string $prefix ] )
|
|
Renders a list of global elements.
|
Parameter |
|
array |
$globals |
|
|
globals array |
|
|
string |
$prefix |
= >>""<< |
|
template blockname prefix |
|
Returns |
void |
|
renderCommonDocfields |
private void renderCommonDocfields( string $block, array &$data )
|
|
Adds some tags to the template that are allowed nearly everywhere.
|
Parameter |
|
string |
$block |
|
|
blockname prefixs |
|
|
|
Returns |
void |
See Also |
$simpleDocfields, renderLinks(), renderAuthors(), renderSee() |
|