如何在liferay中通过代码动态添加iframe

发布于 2024-12-12 15:58:30 字数 205 浏览 2 评论 0原文

我有一个场景,在 liferay 中创建的用户将被分配工具(以 iframe 的形式)。 每个用户的 iframe 数量都会有所不同,当用户登录时,他的公共页面中应该会自动出现这么多数量的 iframe

我怎样才能做到这一点?有没有办法可以将其保存在公共页面的首选项中(对于每个用户来说都是唯一的)?或者我应该使用数据库来实现相同的目的? 谢谢

I have a scenario in which users who are created in the liferay will be assigned tools(in the form of iframe). The number of iframes will differ for each user, and when the user logs in, that many number of iframes should come up automatically in his public page.

How can I achieve this ? Is there a way I can save this in preferences of public pages(which will be unique for each user) ? Or should I be using the DB to achieve the same?
Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

锦爱 2024-12-19 15:58:31

将 iframe 添加到 liferay 可以通过代码动态完成,这是通过以下代码实现的:

            long companyId = themeDisplay.getCompanyId();
        long ownerId = PortletKeys.PREFS_OWNER_ID_DEFAULT;
        int ownerType = PortletKeys.PREFS_OWNER_TYPE_LAYOUT;
        Layout layout = LayoutLocalServiceUtil.getLayout(themeDisplay.getPlid());
        LayoutTypePortlet layoutTypePortlet = (LayoutTypePortlet) layout.getLayoutType();
        String iframePortletId = layoutTypePortlet.addPortletId(themeDisplay.getUserId(),PortletKeys.IFRAME,"column-2",-1);
        PortletPreferences prefs = PortletPreferencesLocalServiceUtil.getPreferences(companyId,ownerId,ownerType,layout.getPlid(),iframePortletId);
        prefs.setValue("src", "http://www.google.com");
        com.liferay.portal.model.PortletPreferences objPortletPref=PortletPreferencesLocalServiceUtil.updatePreferences(ownerId, ownerType,                     layout.getPlid(), iframePortletId, prefs);
        LayoutLocalServiceUtil.updateLayout(layout.getGroupId(),layout.isPrivateLayout(),layout.getLayoutId(),layout.getTypeSettings());    

这将动态添加一个 iframe。

谢谢。

Adding of iframes to liferay can be done dynamically from code, and this is achieved by following code:

            long companyId = themeDisplay.getCompanyId();
        long ownerId = PortletKeys.PREFS_OWNER_ID_DEFAULT;
        int ownerType = PortletKeys.PREFS_OWNER_TYPE_LAYOUT;
        Layout layout = LayoutLocalServiceUtil.getLayout(themeDisplay.getPlid());
        LayoutTypePortlet layoutTypePortlet = (LayoutTypePortlet) layout.getLayoutType();
        String iframePortletId = layoutTypePortlet.addPortletId(themeDisplay.getUserId(),PortletKeys.IFRAME,"column-2",-1);
        PortletPreferences prefs = PortletPreferencesLocalServiceUtil.getPreferences(companyId,ownerId,ownerType,layout.getPlid(),iframePortletId);
        prefs.setValue("src", "http://www.google.com");
        com.liferay.portal.model.PortletPreferences objPortletPref=PortletPreferencesLocalServiceUtil.updatePreferences(ownerId, ownerType,                     layout.getPlid(), iframePortletId, prefs);
        LayoutLocalServiceUtil.updateLayout(layout.getGroupId(),layout.isPrivateLayout(),layout.getLayoutId(),layout.getTypeSettings());    

This will add an iframe dynamically.

Thank you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文