留言板

adding custom portlet in control pannel

sasmita swain,修改在11 年前。

adding custom portlet in control pannel

Regular Member 帖子: 183 加入日期: 12-2-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
Sampsa Sohlman,修改在11 年前。

RE: adding custom portlet in control pannel

Regular Member 帖子: 230 加入日期: 07-9-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>
sasmita swain,修改在11 年前。

RE: adding custom portlet in control pannel

Regular Member 帖子: 183 加入日期: 12-2-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
Vishal Panchal,修改在11 年前。

RE: adding custom portlet in control pannel

Expert 帖子: 289 加入日期: 12-5-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
jaid shaik,修改在11 年前。

RE: adding custom portlet in control pannel

Regular Member 帖子: 171 加入日期: 10-10-8 最近的帖子
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...