扩展/覆盖 elgg 1.6 中的页面元素

发布于 2024-11-19 14:44:31 字数 188 浏览 2 评论 0原文

我想知道如何在 elgg 框架中扩展owner_block 页面元素。我希望它根据使用它的模块而显示不同。差异不仅在于菜单项名称不同,而且更大。我在插件视图目录中创建了 page_elements 文件夹,但它更改了每个模块中每个页面上的owner_block,并且我希望它(例如)仅在搜索模块中显示我的方式,而不是在仪表板中显示。

你能帮我吗?

I would like to know how do I extend owner_block page element in elgg framework. I want it to display differently depending on module using it. Differences are not only in different menu item names, but much greater. I created page_elements folder in my plugin views directory, but it changed owner_block on every page in every module, and I want it (for example) to display my way only in search module, but not in dashboard.

Can you please help me?

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

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

发布评论

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

评论(1

风流物 2024-11-26 14:44:31

您可以使用 if 条件,

谢谢

if(get_context() == 'search') {
// then show the updates
}else{
// just blank
}

..

you can use the if condition

Like

if(get_context() == 'search') {
// then show the updates
}else{
// just blank
}

Thanks..

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