Liferay Web内容显示Portlet:外观 - Portlet配置

时间:2017-02-02 10:35:35

标签: liferay

添加Web内容显示portlet后,单击外观 - Portlet配置 - 显示边框。

如果我取消选中Show Borders,它会显示三个链接,如下面的屏幕截图所示 enter image description here

任何人都可以告诉这三个链接代码包含哪个文件?

我想仅从所有portlet中删除关闭链接

1 个答案:

答案 0 :(得分:0)

这些portlet选项来自以下文件:

portal-web\docroot\html\themes\_unstyled\templates\portlet.vm portlet.vm使用$theme.portletIconOptions()包含不同的选项(配置,关闭,最大化,最小化等)

util-taglib\src\com\liferay\taglib\util\VelocityTaglibImpl.java

portletIconOptions方法的实现在此类中,它使用IconOptionsTag - 自定义标记。

util-taglib\src\com\liferay\taglib\portletext\IconOptionsTag.java

这又为每个选项使用不同的自定义标签。

portal-web\docroot\html\taglib\portlet\icon_options\page.jsp

<liferay-portlet:icon-portlet-css />

<liferay-portlet:icon-configuration />

<liferay-portlet:icon-edit />

<liferay-portlet:icon-edit-defaults />

<liferay-portlet:icon-edit-guest />

<liferay-portlet:icon-export-import />

<liferay-portlet:icon-help />

<liferay-portlet:icon-print />

<liferay-portlet:icon-maximize />

<liferay-portlet:icon-minimize />

<liferay-portlet:icon-close />

`