Foros de discusión

adding custom portlet in control pannel

sasmita swain, modificado hace 11 años.

adding custom portlet in control pannel

Regular Member Mensajes: 183 Fecha de incorporación: 24/02/12 Mensajes recientes
hi

i am creating new user with different id..i want to display custom portlet in controlpannel..when i am login by test test, my custom portlet is displaying in my controlpanel.but when i am loging by different userid it is not displaying in controlpannel

can anybody helpme?

Thanks in advance
thumbnail
Sampsa Sohlman, modificado hace 11 años.

RE: adding custom portlet in control pannel

Regular Member Mensajes: 230 Fecha de incorporación: 27/09/07 Mensajes recientes
Hi Sasmita,

Look the liferay-portlet.xml

Look the following entries and read the docs from those

        <control-panel-entry-category>..</control-panel-entry-category>
        <control-panel-entry-class>..</control-panel-entry-class>
        <control-panel-entry-category>..</control-panel-entry-category>
sasmita swain, modificado hace 11 años.

RE: adding custom portlet in control pannel

Regular Member Mensajes: 183 Fecha de incorporación: 24/02/12 Mensajes recientes
Thanks for reply

i have added above code in liferay-portlet.xml..it is comming in control panel by test@liferay.com.not comming in different userid
thumbnail
Vishal Panchal, modificado hace 11 años.

RE: adding custom portlet in control pannel

Expert Mensajes: 289 Fecha de incorporación: 20/05/12 Mensajes recientes
sasmita swain:
Thanks for reply

i have added above code in liferay-portlet.xml..it is comming in control panel by test@liferay.com.not comming in different userid



Hi sasmita swain,
Can you please share your liferay-portlet.xml..?

Thanks ,
Vishal R. Panchal
thumbnail
jaid shaik, modificado hace 11 años.

RE: adding custom portlet in control pannel

Regular Member Mensajes: 171 Fecha de incorporación: 8/10/10 Mensajes recientes
Hi sasmita swain,

I did same in my portal 6.1 CE,

<portlet>
        <portlet-name>videoadmin</portlet-name>
        <icon>/icon.png</icon>
        <control-panel-entry-category>my</control-panel-entry-category>
        <layout-cacheable>true</layout-cacheable>
        <add-default-resource>true</add-default-resource>
   </portlet>


The above code i added in liferay-portlet.xml, The portlet is displaying only for admin.

But if you want display to particular user,

I followed the below steps:

1) First I created role.
2) In Role Define permission--> I given that particular portlet permissions.
3) Then I assigned that role to particular user.

particular User also can view that portlet.

I think the above information helpful to you.



Thanks...