Created
April 29, 2013 16:34
-
-
Save farmerbradllc/5482816 to your computer and use it in GitHub Desktop.
Check if Portlet is Deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ---------- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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