如何在 Drupal 7 中创建图片库?
这是上传图像并将其显示在画廊中的最佳方式。
有很多选择,想知道哪一个最适合 Drupal 7。
Which is the best way to upload images and show them up in galleries.
There are many options out there, would like to know which one plays best with Drupal 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 http://drupal.org/project/media 和 http://drupal.org/project/media_gallery
have a look at http://drupal.org/project/media and http://drupal.org/project/media_gallery
过去,我只是通过创建一个简单的
Image
内容类型来“推出自己的”。如果您愿意创建一些内容类型和自定义视图),您可以创建强大的基于节点的画廊。这是我的一个宠物项目;我目前正在开发一个简单的模块,该模块创建一个Image
内容类型,其中包含:image
字段(D6 中的 CCK-image)image_tags
和image_collections
词汇表。使用自动完成分类小部件快速创建“图库”。使用 Pathauto 自动为这些词汇表提供 SEO 友好的 URL。image_tags
(或类似的)中。它需要一些配置(这就是我制作该模块的原因),但恕我直言,这是一个可靠的设置。您需要进行一些编码才能以用户友好的方式格式化这些数据,但这是值得的。
媒体 和 媒体库 @rakke 提到的项目看起来很有前途。截至 2011 年 1 月,它们仍在积极开发中,但最近有更新。这些肯定会给您的网站带来更加“精致”的感觉。
In the past, I've just "rolled my own" by creating a simple
Image
content type. If you're willing to create some content types and custom Views), you can create a powerful node-based gallery. This is a pet project of mine; I am currently developing a simple module creates anImage
content type with:image
field (CCK-image in D6)image_tags
andimage_collections
vocabularies. Quickly create "galleries" by using the autocomplete taxonomy widget. Use Pathauto to automatically give these vocabularies SEO-friendly URLs.image_tags
(or similar).It takes a little configuring (hence why I'm making the module), but it is a solid setup IMHO. You will need to do a little coding to format this data in a user-friendly fashion, but it's worth it.
The Media and Media Gallery projects @rakke mentions look promising. As for January 2011, they are still under active development but do have recent updates. These will surely give your site a more "polished" feel.