掲示板

adding custom portlet in control pannel

11年前 に sasmita swain によって更新されました。

adding custom portlet in control pannel

Regular Member 投稿: 183 参加年月日: 12/02/24 最新の投稿
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
11年前 に Sampsa Sohlman によって更新されました。

RE: adding custom portlet in control pannel

Regular Member 投稿: 230 参加年月日: 07/09/27 最新の投稿
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>
11年前 に sasmita swain によって更新されました。

RE: adding custom portlet in control pannel

Regular Member 投稿: 183 参加年月日: 12/02/24 最新の投稿
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
11年前 に Vishal Panchal によって更新されました。

RE: adding custom portlet in control pannel

Expert 投稿: 289 参加年月日: 12/05/20 最新の投稿
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
11年前 に jaid shaik によって更新されました。

RE: adding custom portlet in control pannel

Regular Member 投稿: 171 参加年月日: 10/10/08 最新の投稿
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...