Revert "Added actor-case relation"

This reverts commit c7d36df842.
This commit is contained in:
2021-08-27 08:37:16 +01:00
parent 80f86c62fd
commit 7e4acae864
33 changed files with 1 additions and 2082 deletions

View File

@ -1,23 +0,0 @@
{#
/**
* @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_actor_case_relation_content_add_list()
*
* @ingroup themeable
*/
#}
{% spaceless %}
<dl>
{% for type in types %}
<dt>{{ type.link }}</dt>
{% endfor %}
</dl>
{% endspaceless %}

View File

@ -1,22 +0,0 @@
{#
/**
* @file oc_actor_case_relation.html.twig
* Default theme implementation to present Actor-Case Relation data.
*
* This template is used when viewing Actor-Case Relation 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_actor_case_relation()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('oc_actor_case_relation') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>