{% extends 'base.html.twig' %}
{% block content %}
{% include 'components/breadcrumbs.html.twig' %}
{{ include('components/namespace-title.html.twig') }}
{{ include('components/table-of-contents.html.twig', {'packages': node.children}) }}
{{ include('components/constants.html.twig') }}
{{ include('components/functions.html.twig') }}
{{ include('components/source-modal.html.twig') }}
{% endblock %}
{% block on_this_page %}
{% set constants = constants(node) %}
{% set functions = node.functions|default([]) %}
On this page
- Table Of Contents
-
{% if node.packages is not empty %}
- Packages
{% endif %}
{% if node.namespaces is not empty %}
- Namespaces
{% endif %}
{% if node.interfaces is not empty %}
- Interfaces
{% endif %}
{% if node.classes is not empty %}
- Classes
{% endif %}
{% if node.traits is not empty %}
- Traits
{% endif %}
{% if node.enums is not empty %}
- Enums
{% endif %}
{% if node.constants is not empty %}
- Constants
{% endif %}
{% if node.functions is not empty %}
- Functions
{% endif %}
{% if constants is not empty %}
- Constants
-
{% endif %}
{% if functions is not empty %}
- Functions
-
{% endif %}
{% endblock %}