使 Drupal 站点的管理变得更容易的技巧
我正在为客户创建一个 Drupal 站点,我想让他们尽可能轻松地管理该站点。
他们想要对网站执行的操作示例如下:
- 添加/编辑/删除将显示在各个页面上的内容
- 管理论坛 - 只是基本的 Drupal 论坛模块
- 添加/禁止用户
- 使用网络论坛回复留下的评论
我看到有一个管理模块,看起来很有前途。但我想知道是否有人有任何其他有用的提示。
谢谢
I'm creating a Drupal site for a client, and I'd like to make administrating the site as easy as possible for them.
Examples of what they'd want to do with the site is:
- Add/Edit/Remove content which will be displayed on various pages
- Manage a forum - Just the basic Drupal Forum module
- Add / Ban Users
- Respond to comments left using the webforum
I see there is an Admin module, that looks pretty promising. But I was wondering if anyone has any other helpful tips.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,人们发现有用的是管理菜单模块。
其次,它是登录用户内容顶部的编辑和查看选项卡。如果您使用自定义模板,则可以在打印 page.tpl.php 中的内容之前使用
>。
用户体验可能是可以永远进行微调的东西,当然人们会在这里为您提供更多建议,但这两个对我来说是最重要的救星。
Firstly, what people have found useful is the Administration menu module.
Secondly, it's the Edit and View tabs on top of the content for signed in users. If you're using a custom template, you could just use the
<?php print $tabs ?>
just before you are printing the content in page.tpl.php.UX is probably something that can be fine-tuned forever and surely guys will have a lot more advice coming for you here, but these 2 have been the most important lifesavers for me.