AEM Core WCM Components 2.8.0 , cq/cloudconfig/components/scripttags/header && footer | Community
Skip to main content
New Participant
April 20, 2020
Solved

AEM Core WCM Components 2.8.0 , cq/cloudconfig/components/scripttags/header && footer

  • April 20, 2020
  • 2 replies
  • 4761 views

Hello, I'm attempting to create my own page component. I am overlaying core/wcm/components/page/v2/page. I found two lines of cloud configuration code, and a bit confused as what they are actually doing.

I am seeing these two lines of Sightly Includes:

path: /apps/core/wcm/components/page/v2/page/headlibs.html <sly data-sly-test="${hasCloudconfigSupport}" data-sly-resource="${'cloudconfig-header' @ resourceType='cq/cloudconfig/components/scripttags/header'}"></sly> path: /apps/core/wcm/components/page/v2/page/footer.html <sly data-sly-test="${page.hasCloudconfigSupport}" data-sly-resource="${'cloudconfig-footer' @ resourceType='cq/cloudconfig/components/scripttags/footer'}"></sly>

I've already checked out the cloud service configuration documentation, and found nothing.

Questions I have:

  1. What does the scripttags/header solve?
  2. What does the scripttags/footer solve?

Thank you.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by aemmarc2

It has to do with resolving context-aware configuration stuff. 

 

It's using an underlying service user cloudconfig-scripttags with jcr:read permissions to read the ScriptTagComponents from all cloud services.

2 replies

Ankur_Khare
New Participant
May 18, 2020

These  lines are for injecting analytics script code in header and footer.

 

Check aem launch integration.

aemmarc2Accepted solution
Employee
April 21, 2020

It has to do with resolving context-aware configuration stuff. 

 

It's using an underlying service user cloudconfig-scripttags with jcr:read permissions to read the ScriptTagComponents from all cloud services.

Surender_Kanave
New Participant
May 17, 2020

Can you elaborate more on this one, I had the similar doubt but I didn't find much adobe documentation. what are scripttag components and how they will be resolved with the above script.