function installationDocsModalBody() {
return `
<div class="d-flex flex-row align-items-center mb-4">
<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:57px;">
<svg class="lexicon-icon lexicon-icon-document" role="presentation" style="fill:#6B6C7E;" ><use xlink:href="https://marketplace.liferay.com/o/classic-theme/images/clay/icons.svg#document" /></svg> </span>
<div class="d-flex flex-column" style="min-width: 0;">
<span class="text-black-50">App Installation Guide URL</span>
<a class="font-weight-bold" href="https://docs.google.com/document/d/1jlfivP19dZXCyVR71OOO0TXAHTCiuDx5kjK9wLqeHPg/edit?usp=sharing" target="_blank">
https://docs.google.com/document/d/1jlfivP19dZXCyVR71OOO0TXAHTCiuDx5kjK9wLqeHPg/edit?usp=sharing
</a>
</div>
</div>
`;
}
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;">
<svg class="lexicon-icon lexicon-icon-picture" role="presentation" style="fill:#6B6C7E;" ><use xlink:href="https://marketplace.liferay.com/o/classic-theme/images/clay/icons.svg#picture" /></svg> </span>
<div class="d-flex flex-column">
<h3 class="font-weight-bold mb-0">
Bhargav Vaghasiya
</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-envelope-closed" role="presentation" style="fill:#6B6C7E;" ><use xlink:href="https://marketplace.liferay.com/o/classic-theme/images/clay/icons.svg#envelope-closed" /></svg> </span>
<div class="d-flex flex-column">
<span class="text-black-50">Support Email</span>
<a class="font-weight-bold" href="mailto:brgv1106@gmail.com" target="_blank">
brgv1106@gmail.com
</a>
</div>
</div>
<div class="d-flex flex-row align-items-center 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-phone" role="presentation" style="fill:#6B6C7E;" ><use xlink:href="https://marketplace.liferay.com/o/classic-theme/images/clay/icons.svg#phone" /></svg> </span>
<div class="d-flex flex-column">
<span class="text-black-50">Telefon</span>
<a class="font-weight-bold" href="tel:+917405401822" target="_blank">
+917405401822
</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"
});
}