mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
- generate phpdoc to a dokuwiki compatible format - add/update the phpdoc of a selection of class methods
13 lines
421 B
Twig
13 lines
421 B
Twig
{% if title_level is not defined %}
|
|
{% set title_level='' %}
|
|
{% endif %}
|
|
|
|
{% if (node.parent is null) %}
|
|
{{title_level}} File {{ structure.path }} {{title_level}}
|
|
{% endif %}
|
|
|
|
{% if (node.parent is not null and structure.parent.fullyQualifiedStructuralElementName != node.fullyQualifiedStructuralElementName) %}
|
|
{{title_level}} Inherited from {{title_level}}
|
|
[[{{structure.parent}}|{{structure.parent}}]]
|
|
{% endif %}
|