查看内容元素是否是引用

发布于 2024-12-06 15:18:48 字数 130 浏览 1 评论 0原文

您好,我需要查明内容元素是否是引用。

我试图查看 $this->destPointer 是否已设置,但后来我意识到这是为所有元素设置的...

我也找不到引用保存在数据库中的位置。

有人知道吗?

Hi I need to find out if an content element is a reference or not.

I tried to see if $this->destPointer was set but then I realized that this was set for all elements...

I cant find where the references are saved in the database either.

Someone got any idea?

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

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

发布评论

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

评论(1

凉城 2024-12-13 15:18:48

引用保存在“pages”表的“tx_templavoila_flex”列(XML 格式)中。

根据内容元素的 pid 检查当前页面 id,然后您就知道它是否是引用。

if($this->cObj->data['pid'] != $GLOBALS['TSFE']->id) {
    //reference
}
else {
    //not a reference
}

References are saved in the "pages" table, column "tx_templavoila_flex" (XML format).

Check the current page id against the content elements' pid and then you know whether it's a reference.

if($this->cObj->data['pid'] != $GLOBALS['TSFE']->id) {
    //reference
}
else {
    //not a reference
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文