2024-02-15 10:14:55 +01:00
|
|
|
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
|
|
|
|
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
|
|
|
|
Menu
|
|
|
|
</label>
|
|
|
|
<aside class="phpdocumentor-column -three phpdocumentor-sidebar">
|
|
|
|
{% for version in project.versions %}
|
|
|
|
{% for toc in version.tableOfContents %}
|
|
|
|
<section class="phpdocumentor-sidebar__category -{{ toc.name|lower }}">
|
|
|
|
<h2 class="phpdocumentor-sidebar__category-header">{{ toc.name|title }}</h2>
|
|
|
|
{% for root in toc.roots %}
|
|
|
|
{{ toc(root, 'components/menu.html.twig', 1) }}
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<section class="phpdocumentor-sidebar__category -reports">
|
|
|
|
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
|
|
|
|
{% if project.settings.custom['graphs.enabled'] %}
|
|
|
|
<h3 class="phpdocumentor-sidebar__root-package"><a href="graphs/classes.html">Class Diagram</a></h3>
|
|
|
|
{% endif %}
|
|
|
|
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
|
|
|
|
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
|
|
|
|
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
|
|
|
|
</section>
|
|
|
|
|
2024-02-15 11:13:57 +01:00
|
|
|
<section class="phpdocumentor-sidebar__category -indices">
|
|
|
|
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
|
2024-02-15 10:14:55 +01:00
|
|
|
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
|
|
|
|
</section>
|
|
|
|
</aside>
|