Added Case Fee entity

This commit is contained in:
2021-11-11 14:07:13 +00:00
parent 3753b4e25c
commit cffe817ce9
34 changed files with 2172 additions and 7 deletions

View File

@ -0,0 +1,23 @@
{#
/**
* @file
* Default theme implementation to present a list of custom content entity types/bundles.
*
* Available variables:
* - types: A collection of all the available custom entity types/bundles.
* Each type/bundle contains the following:
* - link: A link to add a content entity of this type.
* - description: A description of this content entity types/bundle.
*
* @see template_preprocess_oc_case_fee_content_add_list()
*
* @ingroup themeable
*/
#}
{% spaceless %}
<dl>
{% for type in types %}
<dt>{{ type.link }}</dt>
{% endfor %}
</dl>
{% endspaceless %}

View File

@ -0,0 +1,22 @@
{#
/**
* @file oc_case_fee.html.twig
* Default theme implementation to present Case Fee data.
*
* This template is used when viewing Case Fee pages.
*
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_oc_case_fee()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('oc_case_fee') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>