如何融合两个内容元素? / 是否存在多合一内容元素?

发布于 2024-12-06 02:24:20 字数 374 浏览 2 评论 0原文

我需要一个包含“Textpic”和“Media”内容元素的 apsect 的内容元素。 基本上,我需要 textpic CE 的整个输入掩码(标题、rte 文本、图像)以及媒体内容元素中的媒体选项卡(swf、mp4、mov)。

我们项目的这一特殊要求来自于我们只能为特定的 javascript 内容滑块使用一个内容元素的需要。所以我不能像 Textpic 一样在媒体 CE 下使用。不,它确实必须是一个可以处理文本图片+媒体 CE 内容的 CE。

一般来说,我会问你:是否已经有一个扩展、技巧、修改或框架,我可以/应该使用它来实现“融合”内容元素?就像“一体化”内容元素、多内容元素一样?


PS:我不使用 Templavoila。我的Typo3版本是4.5

I need a content element that cointains apsects from the "Textpic" and the "Media" content elements.
Basically I need the whole palette of input masks of the textpic CE (headline, rte text, images) plus the media tab (swf, mp4, mov) from the media content element.

This special requirements for our project comes from the need that we can only use one content element for our specific javascript content slieder. So I can not use like a Textpic and underneath a media CE. No it really has to be just one CE which can handle the textpic + the media CE stuff.

Generally I ask you: Is there already a extension, trick, modification or a framework which I can/should be use to achive that i can "fusionate" content elements? Like an "all-in-one"-content element, a multi content element?

Ps: I do not use Templavoila. My Typo3 version is 4.5

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

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

发布评论

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

评论(3

独孤求败 2024-12-13 02:24:20

我认为这是您正在寻找的教程:
http://castironcoding.com/resources/our-blog/sp/view/single/post/reason-6-for-choosing-typo3-custom-content-elements-and-extbase-again- part-23.html

遵循步骤 2 和 3。

您还需要在 Typoscript 中添加特定的渲染配置,即:tt_content._your-ce_

但是它可以从 tt_content.textpictt_content.media 中复制。您可以在以下位置找到前面提到的 CE 的示例打字稿:typo3/sysext/css_styled_content/static/setup.txt。只是不要在那里更改它,而是复制并在您自己的文件中更改。

I think this is the tutorial you're looking for:
http://castironcoding.com/resources/our-blog/sp/view/single/post/reason-6-for-choosing-typo3-custom-content-elements-and-extbase-again-part-23.html

Follow step 2 and 3.

You'll also need to add a specific rendering config in Typoscript ie: tt_content._your-ce_

But it can be copied from out of tt_content.textpic and tt_content.media. You can find the expample typoscript of before mentioned CE's in: typo3/sysext/css_styled_content/static/setup.txt. Just don't alter it there, but make a copy and alter in your own file.

初见 2024-12-13 02:24:20

由于您似乎只谈论重用已经存在的字段,因此您实际上只需要更改后端接口(大关键字:“showitem”)。您将需要字段的数据库名称(查看 tt_content 表中您知道其内容的一些记录),或者访问模块管理工具/配置,在顶部下拉菜单中选择 TCA,打开 tt_content 和列。

尝试 http://blog. chandanweb.com/typo3/adding-new-fields-to-existing-typo3-tables-at-desired-location,您当然必须替换 tt_content tt_news 等。

您可能还想创建一个新类型(上面的方法是为了更改先前存在的类型),但很抱歉,我目前没有时间解释这一点。不过,这并不难,Koopa 的castiron 链接将在您的道路上为您提供帮助。

As you seem to only talk about reusing already exisiting fields, you really only need to change the backend interface (big keyword: "showitem"). You'll need the database names of the fields (peek into the tt_content table of some records where you know the contents), alternatively visit the module Admin Tools / Configuration, select TCA in top dropdown menu, open tt_content and columns.

Try http://blog.chandanweb.com/typo3/adding-new-fields-to-existing-typo3-tables-at-desired-location, you'll of course have to substitue tt_content for tt_news etc.

You might also want to make a new type (the above recipe is for changing a preexisitent), but I'm sorry, I'm currently out of time for explaining that. It's not very hard, though, and the castiron link by Koopa will help you on your way.

木有鱼丸 2024-12-13 02:24:20

也许你可以将内容列包装在另一个 div 中?您可以使用该外部 div 作为内容滑块。现在,您实际上单独使用所有内容元素,然后组合起来使用。

Perhaps you can wrap the content column in another div? You can use that outer div for your content slider. Now you actually use all content elements seperately, but combine then for usage.

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