function installationDocsModalBody() {
return `
`;
}
function publisherSupportModalBody() {
return `
<div class="align-items-center d-flex flex-row mb-3">
<span class="align-items-center d-flex justify-content-center modal-icon-background mr-3" style="background: #E2E2E4; border-radius:50%; height:40px; overflow:hidden; width:40px;">
<img src="/image/organization_logo?img_id=18971030&t=1751309429224" alt="Publisher Image" style="width: 100%; height: 100%; object-fit: cover; border-radius: 50%;" />
</span>
<div class="d-flex flex-column">
<h3 class="font-weight-bold mb-0">
InTENSO
</h3>
</div>
</div>
<div class="align-items-center d-flex flex-row mb-3">
<span class="align-items-center d-flex justify-content-center modal-icon-background mr-3" style="background: #E2E2E4; border-radius:50%; height:40px; overflow:hidden; width:40px;">
<svg class="lexicon-icon lexicon-icon-globe" role="presentation" style="fill:#6B6C7E;" ><use xlink:href="https://marketplace.liferay.com/o/classic-theme/images/clay/icons.svg#globe" /></svg> </span>
<div class="d-flex flex-column">
<span class="text-black-50">Publisher Website</span>
<a href="http://www.intenso24.com/en/" target="_blank" class="font-weight-bold">
http://www.intenso24.com/en/
</a>
</div>
</div>
`;
}
function openInstallationDocsModal() {
Liferay.Util.openModal({
bodyHTML: installationDocsModalBody(),
center: true,
headerHTML: "<h2>Installation Guide</h2>",
size: "md"
});
}
function openPublisherSupportModal() {
Liferay.Util.openModal({
bodyHTML: publisherSupportModalBody(),
center: true,
headerHTML: "<h2>Publisher Support Info</h2>",
size: "md"
});
}