Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{% endif %}

<div {% if embedParams.anchor is defined %}id="{{ embedParams.anchor }}"{% endif %} class="{% if embedParams.align is defined %}align-{{ embedParams.align }}{% endif %}{% if embedParams.class is defined %} {{ embedParams.class }}{% endif %}"{{ data_attributes_str|raw }}>
{{ fos_httpcache_tag('relation-' ~ embedParams.id) }}
{{ fos_httpcache_tag('r' ~ embedParams.id) }}
{% if ibexa.configResolver.getParameter('ng_site_api.richtext_embed_without_subrequest') == true %}
{{ ng_view_content_embedded(embedParams.viewType, params|merge( { "contentId": embedParams.id } )) }}
{% else %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="{% if embedParams.align is defined %}align-{{ embedParams.align }}{% endif %}{% if embedParams.class is defined %} {{ embedParams.class }}{% endif %}">
{{ fos_httpcache_tag('relation-' ~ embedParams.id) }}
{{ fos_httpcache_tag('r' ~ embedParams.id) }}
Content #{{ embedParams.id }}: You do not have permission to view this Content
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{% set params = params|merge( { "class": embedParams.class } ) %}
{% endif %}

{{ fos_httpcache_tag('relation-' ~ embedParams.id) }}
{{ fos_httpcache_tag('r' ~ embedParams.id) }}
{% if ibexa.configResolver.getParameter('ng_site_api.richtext_embed_without_subrequest') == true %}
{{ ng_view_content_embedded(embedParams.viewType, params|merge( { "contentId": embedParams.id } )) }}
{% else %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{{ fos_httpcache_tag('relation-' ~ embedParams.id) }}
{{ fos_httpcache_tag('r' ~ embedParams.id) }}
[[ Content #{{ embedParams.id }}: You do not have permission to view this Content ]]
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{% endif %}

<div {% if embedParams.anchor is defined %}id="{{ embedParams.anchor }}"{% endif %} class="{% if embedParams.align is defined %}align-{{ embedParams.align }}{% endif %}{% if embedParams.class is defined %} {{ embedParams.class }}{% endif %}">
{{ fos_httpcache_tag('relation-location-' ~ embedParams.id) }}
{{ fos_httpcache_tag('rl' ~ embedParams.id) }}
{% if ibexa.configResolver.getParameter('ng_site_api.richtext_embed_without_subrequest') == true %}
{{ ng_view_content_embedded(embedParams.viewType, params|merge( { "locationId": embedParams.id } )) }}
{% else %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="{% if embedParams.align is defined %}align-{{ embedParams.align }}{% endif %}{% if embedParams.class is defined %} {{ embedParams.class }}{% endif %}">
{{ fos_httpcache_tag('relation-location-' ~ embedParams.id) }}
{{ fos_httpcache_tag('rl' ~ embedParams.id) }}
Location #{{ embedParams.id }}: You do not have permission to view this Location
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{% set params = params|merge( { "class": embedParams.class } ) %}
{% endif %}

{{ fos_httpcache_tag('relation-location-' ~ embedParams.id) }}
{{ fos_httpcache_tag('rl' ~ embedParams.id) }}
{% if ibexa.configResolver.getParameter('ng_site_api.richtext_embed_without_subrequest') == true %}
{{ ng_view_content_embedded(embedParams.viewType, params|merge( { "locationId": embedParams.id } )) }}
{% else %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{{ fos_httpcache_tag('relation-location-' ~ embedParams.id) }}
{{ fos_httpcache_tag('rl' ~ embedParams.id) }}
[[ Location #{{ embedParams.id }}: You do not have permission to view this Location ]]
2 changes: 1 addition & 1 deletion bundle/Routing/GeneratorRouter.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
/**
* @final
*
* @internal do not use directly; use @router instead to keep the chain routing mechanism
* @internal do not use directly; use @router instead, to keep the chain routing mechanism
*/
class GeneratorRouter implements ChainedRouterInterface, RequestMatcherInterface
{
Expand Down
2 changes: 1 addition & 1 deletion bundle/Routing/UrlAliasRouter.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Symfony\Component\HttpFoundation\Request;

/**
* Do not use directly; use @router instead to keep the chain routing mechanism.
* Do not use directly; use @router instead, to keep the chain routing mechanism.
*/
class UrlAliasRouter extends BaseUrlAliasRouter
{
Expand Down