Forums de discussion

Adding portlet to a theme

Yannick Ongena, modifié il y a 14 années.

Adding portlet to a theme

Junior Member Publications: 26 Date d'inscription: 22/02/10 Publications récentes
Is it possible to add a portlet to a custom theme?
For example i have a custom menu portlet with specific items based upon the user and some kind of data.
It is build in a portlet but currently i add this manually to each page.
Is is possible to add this in the template so i won't need to add this on each page?
thumbnail
Corné A, modifié il y a 14 années.

RE: Adding portlet to a theme

Liferay Legend Publications: 1313 Date d'inscription: 03/10/06 Publications récentes
Try

$theme.runtime("YOUR_PORTLET_ID", "", $velocityPortletPreferences.toString())

or 

<div align="right" class="login">
$theme.runtime("58")
</div>




Greetings,
Corné
thumbnail
Erik Andersson, modifié il y a 14 années.

RE: Adding portlet to a theme

Junior Member Publications: 39 Date d'inscription: 08/04/08 Publications récentes
Hi Yannick,

If you have a custom portlet (i.e. not one of the core Liferay portlets), you must also add some information about which WAR file the portlet resides in when including a static portlet.

1. To include a core Liferay portlet that is NOT instancable - do as Corné proposes

2. To include a core Liferay portlet that IS instancable - add an instance reference to the run time:

$theme.runtime("56_INSTANCE_qyqy", "", $velocityPortletPreferences.toString())


3. To include a custom portlet with portlet id "myportlet" that is deployed in the plugin "myplugin":
$theme.runtime("myportlet_WAR_myplugin", "", $velocityPortletPreferences.toString())


4. The velocity preferences can be used for example to remove the portlet borders:
$velocityPortletPreferences.setValue("portlet-setup-show-borders", "false")
$theme.runtime("56_INSTANCE_qyqy", "", $velocityPortletPreferences.toString())


Cheers,
Erik
vcvijayan MCA, modifié il y a 14 années.

RE: Adding portlet to a theme

thumbnail
Amira princesse, modifié il y a 13 années.

RE: Adding portlet to a theme

New Member Publications: 7 Date d'inscription: 04/01/10 Publications récentes
hello evry body,

i've created a custom search portlet that I wish to includ in the top of the theme.


this is the VM code

<div class="search_input">

#set ($myPlaceURL = $portletURLFactory.create($request, "customsearch_WAR_CustomSearchportlet_INSTANCE_abcd", $getterUtil.getLong($plid), "RENDER_PHASE"))

${myPlaceURL.setWindowState("maximized")}
${myPlaceURL.setPortletMode("view")}
${myPlaceURL.setParameter("javax.portlet.action", "doSearch")}

<form action="${myPlaceURL.toString()}" method="post" id="customsearch_WAR_CustomSearchportlet_INSTANCE_abcd_fm">  
	<input type="text" name="customsearch_WAR_CustomSearchportlet_INSTANCE_abcd_search" id="customsearch_WAR_CustomSearchportlet_INSTANCE_abcd_search">
	<input type="submit" value="Search">  
		
</form>	


</div>



and when click on the search buttom of my portlet I get :

You do not have the roles required to access this portlet.


note : i do not get any exceptio in my log

could any of you help me plz

Regards,
Amira
thumbnail
Brian Scott Schupbach, modifié il y a 12 années.

RE: Adding portlet to a theme

Expert Publications: 329 Date d'inscription: 23/10/08 Publications récentes
I'm also getting the "you do not have the required roles to access this portlet" error. Its weird because I'm logged in as the administrator and should have access to everything. Any ideas?
Jesse Paria, modifié il y a 12 années.

RE: Adding portlet to a theme

Junior Member Publications: 69 Date d'inscription: 04/03/11 Publications récentes
Not sure about this but I think if you go into the control panel and select plugins configuration and then select portlet plugins. You can add and edit the roles for that plugin. Perhaps you don't have administrator role applied to that plugin. Seems strange but I suppose it is possible.
The other thing to check is what roles you have specified in the portlet itselt in the portlet.xml file.

Hope this helps
thumbnail
Tariqul Islam, modifié il y a 9 années.

RE: Adding portlet to a theme

New Member Publications: 15 Date d'inscription: 27/01/13 Publications récentes
Yes possible please follow the bellow link.
http://tariqliferay.blogspot.com/2015/02/how-to-add-portlet-in-liferay-theme.html