{% extends "_base.html.twig" %} {% block type %}{{ parent() }}({{ var.className }}){% endblock %} {% block value %} {# Help link #} {% if var.helpLink is not empty %}
Help link
{{ var.helpLink }}
{% endif %} {# Custom data #} {% if var.objectCustomData is not empty %}
Data
{{ render_type(var.objectCustomData)|raw }}
{% endif %} {# Properties #} {% if var.objectProperties is not empty %}
Properties
{% for data in var.objectProperties %} {{ render_type(data.value, data.name, data.visibility)|raw }} {% endfor %}
{% endif %} {# Class info #} {% if var.classFile is not empty %}
Class info
{% if var.classFile is not empty %}
Filename: {{ var.classFile }}
{% endif %} {% if var.classInterface is not empty %}
Interfaces: {{ var.classInterface }}
{% endif %} {% if var.classNamespace is not empty %}
Namespace: {{ var.classNamespace }}
{% endif %} {% if var.classParent is not empty %}
Parent: {{ var.classParent }}
{% endif %}
{% endif %} {# Class constants #} {% if var.classConstants is not empty %}
Class constants
{% for key,constant in var.classConstants %} {{ render_type(constant.value, constant.name)|raw }} {% endfor %}
{% endif %} {# Class methods #} {% if var.classMethods is not empty %}
Methods
{% for method in var.classMethods %} {{ m.render_object_method(method) }} {% endfor %}
{% endif %} {% endblock %}