在 drupal 7 中进行全局设置
简单明了:我想要一个“全局”设置,用户可以在 drupal 7 管理中登录和更改。例如网站的标题图像(例如使用内置上传器)。
最佳实践是什么?
Straightforward: I want to have a "global" setting which the user can login and change in drupal 7 administration. For example the header image of the site (for example with a built in uploader).
What is the best practice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将字段添加到用户的“帐户设置”中。文件字段现在是 Drupal 核心的一部分。所有字段都可以具有默认值,用户可以通过登录其帐户来覆盖这些默认值。然后您可以在主题内使用它们。
You could add Fields to the "Account Settings" for a user. File fields are now part of Drupal core. Fields can all have default values that a user could then override by logging into their account. Then you can play with them from within the theme.