api-8.x-1.x-dev/templates/functions.html.twig
templates/functions.html.twig
{#
/**
* @file
* Displays a list of function/file references.
*
* Available variables:
* - functions: Array of items to display. Each is an array with the following
* elements:
* - function: HTML-formatted link to the item.
* - file: HTML-formatted link to the file is in.
* - description: Description of the item.
*
* @ingroup themeable
*/
#}
<dl class="api-functions">
{% for function in functions %}
<dt>{{ function.function }} <small>{{ 'in'|t }} {{ function.file|safe_markup }}</small></dt>
<dd>{{ function.description|safe_markup }}</dd>
{% endfor %}
</dl>
