转换内容类型以查询视图到数据库中
我已经使用 PHP 从我的模块中的数据库中检索了内容类型 Student。如何保存此内容类型(例如视图)并将其存储到我的数据库中?我用的是drupal 6。
I have retrieved the content type Student from my database in my module with PHP. How can I save this content type, like a view, and store it into my database? I use drupal 6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用内容复制模块(包含在 CCK 包中)导出和导入内容类型。如果要显示内容类型“学生”的节点列表,则需要创建一个新视图,在其中可以设置过滤器以仅显示“学生”类型的节点。
You can export and import content types using Content Copy module (included in CCK package). If you want to display the list of nodes of content type Student, you need to create a new View, where you can set up the filter to show nodes of "Student" type only.