Skip to content

Instantly share code, notes, and snippets.

@farmerbradllc
Created April 29, 2013 16:34
Show Gist options
  • Save farmerbradllc/5482816 to your computer and use it in GitHub Desktop.
Save farmerbradllc/5482816 to your computer and use it in GitHub Desktop.
Check if Portlet is Deployed
## ---------- Check for Web Form Portlet ---------- ##
#set ($portletLocalServiceUtil = $portal.getClass().forName("com.liferay.portal.service.PortletLocalServiceUtil"))
#set ($webformPortletId = "1_WAR_webformportlet")
#if ($portletLocalServiceUtil.hasPortlet($company_id, $webformPortletId) == true)
#set ($hasWebFormPortlet = true)
#end
#if (!$hasWebFormPortlet && $theme_settings.display-warning-messages == true)
<div class="portlet-msg-info">
This theme uses "Web Form Portlet", please click <a href="http://www.liferay.com/marketplace/-/mp/application/15195519">here</a> to download from Liferay Marketplace.
</div>
#end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment