Targeting
{% block overview %}
{% block overviewTable %}
{% if documentTargetGroup is not null %}
| Document Target Group |
{{ toolbar.label(documentTargetGroup.name, ['_ptgtb__label--target-group']) }}
|
{% endif %}
| Visitor ID |
{% if visitorInfo.visitorId is not empty %}
{{ toolbar.label(visitorInfo.visitorId) }}
{% else %}
-
{% endif %}
|
| Session ID |
{% if visitorInfo.sessionId is not empty %}
{{ toolbar.label(visitorInfo.sessionId) }}
{% else %}
-
{% endif %}
|
{% endblock %}
{% endblock %}
{% block rules %}
{% if rules is not empty %}
Matched Rules
{{ toolbar.label(rules|length) }}
{% endif %}
{% endblock %}
{% block targetGroups %}
{% if targetGroups is not empty %}
Assigned Target Groups
{{ toolbar.label(targetGroups|length) }}
{% endif %}
{% endblock %}
{% block documentTargetGroups %}
{% if documentTargetGroups is not empty %}
Document Target Groups
{{ toolbar.label(documentTargetGroups|length) }}
{% endif %}
{% endblock %}
{% block advanced %}
{% block visitorInfo %}
Visitor Info
{{ pimcore_dump({ data: visitorInfo.data, actions: visitorInfo.actions }) }}
{% endblock %}
{% block storage %}
Storage
{% endblock %}
{% endblock %}
{% block overrides %}
Overrides
{% block overrideForm %}
{% form_theme overrideForm 'form_div_layout.html.twig' %}
{{ form_start(overrideForm, { attr: { id: toolbar.identifier(token, 'overrides'), class: '_ptgtb__override-form' }}) }}
{{ form_widget(overrideForm) }}
{{ form_end(overrideForm) }}
{% endblock %}
{% endblock %}