use of org.onehippo.cms7.essentials.components.info.EssentialsBannerComponentInfo in project hippo by NHS-digital-website.
the class BannerComponent method doBeforeRender.
@Override
public void doBeforeRender(HstRequest request, HstResponse response) {
super.doBeforeRender(request, response);
EssentialsBannerComponentInfo componentInfo = getComponentParametersInfo(request);
HippoBean document = getHippoBeanForPath(componentInfo.getDocument(), HippoBean.class);
request.setAttribute("document", document);
request.setAttribute("cparam", componentInfo);
DocumentUtils.setMetaTags(request, this);
}
Aggregations